add Dockerfile
This commit is contained in:
parent
e0992b2351
commit
b8c91b351a
13
Dockerfile
Normal file
13
Dockerfile
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
FROM python:alpine
|
||||||
|
|
||||||
|
WORKDIR /bot
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
|
ENV PYTHONUNBUFFERED='a'
|
||||||
|
|
||||||
|
ENTRYPOINT [ "python" ]
|
||||||
|
|
||||||
|
CMD [ "bot.py" ]
|
Loading…
Reference in a new issue