Skip to content

Commit

Permalink
Remove matplotlib from dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Nov 7, 2019
1 parent 6d05ce3 commit acd0872
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ FROM node:12 AS frontend-builder
COPY ./maubot/management/frontend /frontend
RUN cd /frontend && yarn --prod && yarn build

FROM alpine:edge
FROM alpine:3.10

ENV UID=1337 \
GID=1337

COPY . /opt/maubot
COPY --from=frontend-builder /frontend/build /opt/maubot/frontend
WORKDIR /opt/maubot
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing \
RUN apk add --no-cache \
py3-aiohttp \
py3-sqlalchemy \
py3-attrs \
Expand All @@ -24,7 +24,6 @@ RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing \
py3-pillow \
py3-magic \
py3-psycopg2 \
py3-matplotlib \
py3-ruamel.yaml \
py3-jinja2 \
py3-click \
Expand Down

0 comments on commit acd0872

Please sign in to comment.