2018-10-17 20:02:04 +00:00
|
|
|
FROM alpine:3.8
|
2018-10-17 18:17:15 +00:00
|
|
|
|
|
|
|
COPY . /opt/maubot
|
|
|
|
WORKDIR /opt/maubot
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
py3-aiohttp \
|
|
|
|
py3-sqlalchemy \
|
|
|
|
py3-attrs \
|
2018-11-01 10:41:53 +00:00
|
|
|
py3-bcrypt \
|
|
|
|
py3-cffi \
|
2018-10-17 18:17:15 +00:00
|
|
|
ca-certificates \
|
2018-10-17 20:02:04 +00:00
|
|
|
&& pip3 install -r requirements.txt
|
2018-10-17 18:17:15 +00:00
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
|
2018-10-17 20:02:04 +00:00
|
|
|
CMD ["/opt/maubot/docker-run.sh"]
|