Add dockerfile for bot and build/publish actions

This commit is contained in:
Stephan Auerhahn
2022-12-13 11:24:22 -08:00
parent 837452af25
commit 6c41d7afde
4 changed files with 88 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"]