From 3621ddc190499b77aae47ba7215d60d24a48cab6 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Thu, 23 Jan 2020 14:35:35 +0200 Subject: [PATCH] Update docker images to Alpine 3.11 --- Dockerfile | 2 +- maubot/standalone/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f8be4a4..aa7fc9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/maubot/standalone/Dockerfile b/maubot/standalone/Dockerfile index 8f9b9f0..f24ee25 100644 --- a/maubot/standalone/Dockerfile +++ b/maubot/standalone/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/alpine:3.10 +FROM docker.io/alpine:3.11 COPY . /opt/maubot RUN cd /opt/maubot \