9 lines
290 B
Plaintext
9 lines
290 B
Plaintext
# The source code is bind-mounted at runtime, not copied into the image.
|
|
# .dockerignore only matters for what's sent to the Docker build daemon
|
|
# (i.e. the COPY requirements.txt step in the Dockerfile).
|
|
.git/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# Keep requirements.txt (needed for the COPY in Dockerfile)
|