Created
July 31, 2024 15:29
-
-
Save PageotD/ea3f4428d4772bb0320754c45245e291 to your computer and use it in GitHub Desktop.
Simple SQLite Docker image
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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