Add settings.py to Dockerfile application files

This commit is contained in:
Joakim Hellsén 2024-12-30 04:43:25 +01:00
commit 0bfc1851fa
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9

View file

@ -17,7 +17,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
RUN apt-get purge -y --auto-remove git
# Copy the application files
ADD main.py misc.py /app/
ADD main.py misc.py settings.py /app/
# Set the environment variables
ENV PYTHONUNBUFFERED=1