Skip to content

Instantly share code, notes, and snippets.

@PageotD
Created July 31, 2024 15:29
Show Gist options
  • Save PageotD/ea3f4428d4772bb0320754c45245e291 to your computer and use it in GitHub Desktop.
Save PageotD/ea3f4428d4772bb0320754c45245e291 to your computer and use it in GitHub Desktop.
Simple SQLite Docker image
# Dockerfile for SQLite
FROM alpine:latest
# Install SQLite
RUN apk --no-cache add sqlite sqlite-dev
# Set the working directory
WORKDIR /data
# Expose the port SQLite may use
EXPOSE 3306
# Start an interactive shell
CMD ["sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment