Spaces:
Sleeping
Sleeping
File size: 248 Bytes
dd817e4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python
WORKDIR /app
# Copy the requirements.txt file into the image
COPY requirements.txt .
# Install the Python dependencies
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "app.py"] |