Spaces:
Runtime error
Runtime error
# Use an existing Docker image as a base | |
FROM python:3.9 | |
# Set the working directory inside the container | |
WORKDIR /app | |
# Copy the requirements file into the container at /app | |
COPY requirements.txt /requirements | |
# Install the dependencies | |
RUN pip install --no-cache-dir -r requirements.txt |