6 lines
129 B
Docker
Raw Normal View History

2023-06-09 00:56:31 +08:00
FROM python:3.10.11-slim-buster
WORKDIR /app
COPY . .
RUN pip3 install -r requirements.txt
EXPOSE 8000
CMD ["python3", "main.py"]