Spaces:
Niansuh
/
Running

eb2 / Dockerfile
rr1's picture
Upload 3 files
39359ac verified
raw
history blame contribute delete
109 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "app.py"]