Files
AstrBot/Dockerfile
2024-08-08 16:16:55 +08:00

12 lines
159 B
Docker

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