From 5565e58cc29fb122e06c7983ff1566abbd5bff09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D9=8A?= Date: Tue, 29 Apr 2025 12:17:21 +0000 Subject: [PATCH] Fixed Dockerfile to use the .env file for environment variables --- Getting Started/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 && \