Spaces:
Runtime error
Runtime error
File size: 100 Bytes
b87059f |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.8
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
CMD python app.py
|