mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
17 lines
288 B
Docker
17 lines
288 B
Docker
FROM alpine:3.8
|
|
|
|
COPY . /opt/maubot
|
|
WORKDIR /opt/maubot
|
|
RUN apk add --no-cache \
|
|
py3-aiohttp \
|
|
py3-sqlalchemy \
|
|
py3-attrs \
|
|
py3-bcrypt \
|
|
py3-cffi \
|
|
ca-certificates \
|
|
&& pip3 install -r requirements.txt
|
|
|
|
VOLUME /data
|
|
|
|
CMD ["/opt/maubot/docker-run.sh"]
|