werewolve-bot/Dockerfile
2020-03-28 21:57:24 +01:00

10 lines
184 B
Docker

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"]