Spaces:
Running
Running
File size: 320 Bytes
95914a4 6c19697 95914a4 6c19697 95914a4 6c19697 95914a4 6c19697 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.9
# Install dependencies
COPY requirements.txt /app/
RUN pip install -r /app/requirements.txt
# Copy app files
COPY app_name /app/app_name/
COPY static/ /app/static/
COPY templates/ /app/templates/
# Set working directory
WORKDIR /app/app_name
# Set the command to run the app
CMD ["python", "app.py"]
|