mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
9 lines
140 B
Docker
9 lines
140 B
Docker
FROM python:3.10.13-bullseye
|
|
WORKDIR /AstrBot
|
|
|
|
COPY . /AstrBot/
|
|
|
|
RUN python -m pip install -r requirements.txt
|
|
|
|
CMD [ "python", "main.py" ]
|