diff --git a/Getting Started/Dockerfile b/Getting Started/Dockerfile index 1bdf6775..f2bc8c2b 100644 --- a/Getting Started/Dockerfile +++ b/Getting Started/Dockerfile @@ -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 && \