Spaces:
Sleeping
Sleeping
File size: 333 Bytes
cbc31f1 de850b6 03ebb12 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# Base image for Python
FROM python:3.10
# Set the working directory
WORKDIR /app
# Copy requirements.txt and install dependencies
COPY requirements.txt /app/requirements.txt
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# Copy the rest of the code
COPY . /app
# Run the application
CMD ["python", "app.py"]
|