Spaces:
Sleeping
Sleeping
File size: 171 Bytes
1df7042 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:latest
WORKDIR /usr/src/app
COPY . .
RUN /usr/local/bin/python -m pip install --upgrade pip
RUN pip install -r requirements.txt
CMD ["python", "./app.py"]
|