Update docker images to Alpine 3.11

This commit is contained in:
Tulir Asokan 2020-01-23 14:35:35 +02:00
parent d874f43df9
commit 3621ddc190
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ FROM node:12 AS frontend-builder
COPY ./maubot/management/frontend /frontend
RUN cd /frontend && yarn --prod && yarn build
FROM alpine:3.10
FROM alpine:3.11
ENV UID=1337 \
GID=1337

View File

@ -1,4 +1,4 @@
FROM docker.io/alpine:3.10
FROM docker.io/alpine:3.11
COPY . /opt/maubot
RUN cd /opt/maubot \