Merge pull request #6 from palp/palp/docker-build

Docker builds
This commit is contained in:
Yannic Kilcher
2022-12-17 22:19:57 +01:00
committed by GitHub
4 changed files with 92 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM python:3.10-slim-bullseye
RUN mkdir /app
ADD requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt
ADD . /app
CMD ["python", "bot.py"]