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"] -