feat: Dockerize

This commit is contained in:
2023-05-04 14:35:58 -07:00
parent d5fcc4060c
commit c5116079ac
4 changed files with 40 additions and 2 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:bullseye
WORKDIR /usr/src/app
COPY server2serverMessageBot.py ./
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install --no-cache-dir discord.py
CMD python3 server2serverMessageBot.py