Update Dockerfiles to copy .env file

- Add .env file copy to all Dockerfile variants (dev, local, prod)
- Ensures environment variables are available in containers
- Part of environment configuration centralization
This commit is contained in:
2026-02-01 19:02:49 -05:00
parent ed8b07c27d
commit 3204451a5e
3 changed files with 3 additions and 0 deletions

View File

@@ -14,6 +14,7 @@ RUN echo "server pool.ntp.org iburst" >> /etc/chrony/chrony.conf
# Copy and install Python dependencies
COPY requirements.txt requirements.txt
COPY .env .env
RUN pip install -r requirements.txt
# Copy source code