File size: 226 Bytes
2a4ce94 a313f9c 2a4ce94 a313f9c 2a4ce94 a313f9c 2a4ce94 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.10-slim
WORKDIR /app
# Copy app files
COPY . /app
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose the port used by Flask
EXPOSE 7860
# Run the app
CMD ["python", "app.py"]
|