9 lines
165 B
Docker
9 lines
165 B
Docker
FROM python:3.10.13-bullseye
|
|
WORKDIR /AstrBot
|
|
|
|
COPY . /AstrBot/
|
|
|
|
RUN python -m pip install -r requirements.txt
|
|
RUN python -m pip install
|
|
|
|
CMD [ "python", "main.py" ] |