Files
AstrBot/Dockerfile
T
2024-07-24 18:40:08 +08:00

9 lines
133 B
Docker

FROM python:3.10-slim
WORKDIR /AstrBot
COPY . /AstrBot/
RUN python -m pip install -r requirements.txt
CMD [ "python", "main.py" ]