From cacbeeb068a0f21867c835c8d2290cd3be5cd41e Mon Sep 17 00:00:00 2001 From: Tudor Sitaru Date: Wed, 1 Apr 2026 15:05:21 +0100 Subject: [PATCH] fixing backend image --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 26fff15..6b9011f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,13 +22,10 @@ RUN pip install --no-cache-dir -r requirements.txt # Copy application code COPY backend/ ./backend/ -COPY frontend/ ./frontend/ COPY scripts/ ./scripts/ -COPY data/ ./data/ # Expose the application port EXPOSE 80 # Run the application (using module import) CMD ["python", "-m", "uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "80"] -