11 lines
184 B
Docker
11 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"]
|