File size: 345 Bytes
fd58680 37c6874 fd58680 37c6874 fd58680 37c6874 fd58680 cbf169f 37c6874 fd58680 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Use official Python image
FROM python:3.9-slim
# Set working directory
WORKDIR /app
# Copy requirements and install dependencies
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy app files
COPY . .
# Expose the port the app runs on
EXPOSE 5000
# Run the Flask server
CMD ["python", "app.py"] |