Spaces:
No application file
No application file
File size: 175 Bytes
a85c9b8 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.11-slim AS backend
WORKDIR /usr/src/app/backend
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
CMD ["python", "server.py"]
|