2018-11-10 22:52:28 +00:00
|
|
|
FROM node:10 AS frontend-builder
|
|
|
|
|
|
|
|
COPY ./maubot/management/frontend /frontend
|
|
|
|
RUN cd /frontend && yarn --prod && yarn build
|
|
|
|
|
2019-02-13 17:40:21 +00:00
|
|
|
FROM alpine:3.9
|
2018-10-17 18:17:15 +00:00
|
|
|
|
2018-11-04 21:05:39 +00:00
|
|
|
ENV UID=1337 \
|
|
|
|
GID=1337
|
|
|
|
|
2018-10-17 18:17:15 +00:00
|
|
|
COPY . /opt/maubot
|
2018-11-10 22:52:28 +00:00
|
|
|
COPY --from=frontend-builder /frontend/build /opt/maubot/frontend
|
2018-10-17 18:17:15 +00:00
|
|
|
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-12-13 20:37:17 +00:00
|
|
|
build-base \
|
|
|
|
python3-dev \
|
2018-10-17 18:17:15 +00:00
|
|
|
ca-certificates \
|
2018-11-04 21:05:39 +00:00
|
|
|
su-exec \
|
2019-02-04 09:57:58 +00:00
|
|
|
py3-pillow \
|
|
|
|
py3-magic \
|
2019-04-13 23:05:06 +00:00
|
|
|
py3-psycopg2 \
|
2019-06-08 09:31:38 +00:00
|
|
|
&& pip3 install -r requirements.txt feedparser dateparser
|
|
|
|
# TODO remove pillow, magic and feedparser when maubot supports installing dependencies
|
2018-10-17 18:17:15 +00:00
|
|
|
|
|
|
|
VOLUME /data
|
|
|
|
|
2018-11-04 21:05:39 +00:00
|
|
|
CMD ["/opt/maubot/docker/run.sh"]
|