Spaces:
Runtime error
Runtime error
FROM python:3.10 | |
WORKDIR /app | |
ADD . /app | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 8000 | |
# Run main.py when the container launches | |
CMD ["python", "main.py"] | |