Fixed Dockerfile to use the .env file for environment variables

This commit is contained in:
ي
2025-04-29 12:17:21 +00:00
parent 4f20a5206f
commit 5565e58cc2

View File

@@ -49,7 +49,9 @@ WORKDIR /app
COPY ../requirements.txt ./
COPY ../alwrity.py /app/
COPY ../lib /app/lib
COPY ../.env /app/.env
# Create the .env file with default values
RUN echo "# Default environment variables for ALwrity\n" > /app/.env
# 10. Install Python dependencies
RUN pip install --upgrade pip && \