apk add -> apt-get

This commit is contained in:
Isaac Abadi
2022-04-30 13:50:41 -04:00
parent f205f8e58e
commit f5894e6bc0

View File

@@ -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 \