Spaces:
Sleeping
Sleeping
FROM python:3.10 | |
COPY requirements.txt . | |
RUN pip install --no-cache-dir -r requirements.txt | |
RUN rm requirements.txt | |
COPY app.py . | |
EXPOSE 8001 | |
CMD ["python", "app.py"] |