QChatGPT/Dockerfile

8 lines
127 B
Docker
Raw Normal View History

FROM python:3.10.13-bullseye
2024-02-07 00:07:55 +08:00
WORKDIR /app
2023-03-24 19:58:27 +08:00
2024-02-07 00:07:55 +08:00
COPY . .
2023-03-24 19:58:27 +08:00
2024-02-07 00:07:55 +08:00
RUN python -m pip install -r requirements.txt
2023-09-12 18:21:03 +08:00
2024-02-08 13:40:25 +08:00
CMD [ "python", "main.py" ]