2018-11-10 17:52:28 -05:00
|
|
|
FROM node:10 AS frontend-builder
|
|
|
|
|
|
|
|
COPY ./maubot/management/frontend /frontend
|
|
|
|
RUN cd /frontend && yarn --prod && yarn build
|
|
|
|
|
2018-10-17 16:02:04 -04:00
|
|
|
FROM alpine:3.8
|
2018-10-17 14:17:15 -04:00
|
|
|
|
2018-11-04 16:05:39 -05:00
|
|
|
ENV UID=1337 \
|
|
|
|
GID=1337
|
|
|
|
|
2018-10-17 14:17:15 -04:00
|
|
|
COPY . /opt/maubot
|
2018-11-10 17:52:28 -05:00
|
|
|
COPY --from=frontend-builder /frontend/build /opt/maubot/frontend
|
2018-10-17 14:17:15 -04:00
|
|
|
WORKDIR /opt/maubot
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
py3-aiohttp \
|
|
|
|
py3-sqlalchemy \
|
|
|
|
py3-attrs \
|
2018-11-01 06:41:53 -04:00
|
|
|
py3-bcrypt \
|
|
|
|
py3-cffi \
|
2018-12-13 15:37:17 -05:00
|
|
|
build-base \
|
|
|
|
python3-dev \
|
2018-10-17 14:17:15 -04:00
|
|
|
ca-certificates \
|
2018-11-04 16:05:39 -05:00
|
|
|
su-exec \
|
2019-02-04 04:57:58 -05:00
|
|
|
py3-pillow \
|
|
|
|
py3-magic \
|
|
|
|
&& pip3 install -r requirements.txt feedparser
|
|
|
|
# TODO require pillow, magic and feedparser when maubot supports installing dependencies
|
2018-10-17 14:17:15 -04:00
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
|
2018-11-04 16:05:39 -05:00
|
|
|
CMD ["/opt/maubot/docker/run.sh"]
|