Files
gander/backend/core/Dockerfile
Chris-1010 2887409ae6 Major: Restructure of Project
Major: Introduction of Frontend (React)
2025-01-21 17:19:23 +00:00

18 lines
287 B
Docker

FROM python:3.10
# Set working directory
WORKDIR /core
# Install dependencies
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY . .
# Expose Flask's port
EXPOSE 5000
# Start the Flask app
CMD ["python", "app.py"]