add Dockerfile
This commit is contained in:
parent
cb4ed715b3
commit
ba4d1cf115
1 changed files with 14 additions and 0 deletions
14
Dockerfile
Normal file
14
Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
FROM alpine
|
||||
|
||||
WORKDIR /app
|
||||
VOLUME /data
|
||||
|
||||
RUN apk add --update musl-dev python3-dev gcc python3 py3-pip git py3-lxml libxml2 libxml2-dev py3-pynacl\
|
||||
&& pip3 install --upgrade pip \
|
||||
&& pip3 install bs4 requests giphy_client discord.py python-gitlab\
|
||||
&& git clone https://git.0w.tf/Milka64/kabot.git
|
||||
WORKDIR /app/kabot
|
||||
RUN python3 bootstrap-buildout.py \
|
||||
&& bin/buildout
|
||||
|
||||
CMD bin/kabot
|
Loading…
Reference in a new issue