Spaces:
Runtime error
Runtime error
File size: 177 Bytes
1352a28 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"]
|