setup Docker
This commit is contained in:
parent
475a41abcc
commit
9f882ab1be
6 changed files with 39 additions and 13 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue