setup Docker

This commit is contained in:
Benjamin Schmid 2020-03-28 21:57:24 +01:00
parent 475a41abcc
commit 9f882ab1be
6 changed files with 39 additions and 13 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.8-alpine3.10
WORKDIR /app
RUN apk add build-base
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY src/ ./src/
CMD ["python3", "src/werewolve-bot.py"]