maubot/Dockerfile

15 lines
252 B
Docker
Raw Normal View History

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 \
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"]