mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
21 lines
385 B
Docker
21 lines
385 B
Docker
|
FROM docker.io/alpine:3.8
|
||
|
|
||
|
ENV UID=1338 \
|
||
|
GID=1338
|
||
|
|
||
|
COPY . /opt/maubot
|
||
|
WORKDIR /opt/maubot
|
||
|
RUN apk add --no-cache \
|
||
|
python3-dev \
|
||
|
build-base \
|
||
|
py3-aiohttp \
|
||
|
py3-sqlalchemy \
|
||
|
py3-attrs \
|
||
|
ca-certificates \
|
||
|
su-exec \
|
||
|
&& pip3 install -r requirements.txt -r optional-requirements.txt
|
||
|
|
||
|
VOLUME /data
|
||
|
|
||
|
CMD ["/opt/mautrix-telegram/docker-run.sh"]
|