Spaces:
Running
Running
File size: 331 Bytes
cbc31f1 8f43d90 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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"] |