From f5894e6bc0e01f09831f80db4d61ed5f1f49a45e Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Sat, 30 Apr 2022 13:50:41 -0400 Subject: [PATCH] apk add -> apt-get --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 317d68e..19df50a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,8 +5,7 @@ RUN sh ./docker-build.sh FROM ubuntu:focal as frontend -RUN apk add --no-cache \ - npm +RUN apt-get update && apt-get install npm RUN npm install -g @angular/cli @@ -30,7 +29,7 @@ ENV NO_UPDATE_NOTIFIER=true RUN addgroup -S $USER -g $GID && adduser -D -S $USER -G $USER -u $UID -RUN apk add --no-cache \ +RUN apt-get update && apt-get install \ npm \ python2 \ python3 \