Spaces:
Build error
Build error
File size: 119 Bytes
19e0662 |
1 2 3 4 5 6 |
FROM python:3.9-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]
|