From 93ce498e94ca56d7007b1af15fb08b2f796b1368 Mon Sep 17 00:00:00 2001 From: GlassedSilver Date: Mon, 2 May 2022 08:20:48 +0200 Subject: [PATCH] switch to ubuntu 21.10 as we wait for nodesource --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3b8ec2c..24ac0d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM ubuntu:20.04 AS ffmpeg +FROM ubuntu:21.10 AS ffmpeg ENV DEBIAN_FRONTEND=noninteractive COPY docker-build.sh . RUN sh ./docker-build.sh -FROM ubuntu:20.04 as frontend +FROM ubuntu:21.10 as frontend ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get -y install \ @@ -31,7 +31,7 @@ RUN npm run build #--------------# -FROM ubuntu:20.04 +FROM ubuntu:21.10 ENV UID=1000 \ GID=1000 \