nesticot's picture
Upload 5 files
95914a4 verified
raw
history blame
No virus
320 Bytes
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"]