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