From 0e41dd97ea1ba29a8c7455ec4a67d0922652db2f Mon Sep 17 00:00:00 2001 From: Koenkk Date: Thu, 29 Nov 2018 21:02:37 +0100 Subject: [PATCH] Docker unlock nodejs and npm version. --- docker/Dockerfile.amd64 | 2 +- docker/Dockerfile.arm32v6 | 2 +- docker/Dockerfile.arm64v8 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index 963aba8e6..70ee760e4 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -12,7 +12,7 @@ ARG COMMIT RUN echo "{\"hash\": \"$COMMIT\"}" > .hash.json # Install dependencies -RUN apk add --update --no-cache make gcc g++ python linux-headers udev nodejs=8.11.4-r0 npm=8.11.4-r0 git && \ +RUN apk add --update --no-cache make gcc g++ python linux-headers udev nodejs npm git && \ npm install --unsafe-perm && \ apk del make gcc g++ python linux-headers udev git diff --git a/docker/Dockerfile.arm32v6 b/docker/Dockerfile.arm32v6 index 2a9271786..ccb7a4e46 100644 --- a/docker/Dockerfile.arm32v6 +++ b/docker/Dockerfile.arm32v6 @@ -14,7 +14,7 @@ ADD . /app RUN [ "qemu-arm-static", "/bin/sh", "-c", \ "cp /app/data/configuration.yaml /app && \ cp /app/docker/run.sh /app && chmod +x /app/run.sh && \ - apk add --update --no-cache make gcc g++ python linux-headers udev nodejs=8.11.4-r0 npm=8.11.4-r0 git && \ + apk add --update --no-cache make gcc g++ python linux-headers udev nodejs npm git && \ npm install --unsafe-perm && \ apk del make gcc g++ python linux-headers udev git"] diff --git a/docker/Dockerfile.arm64v8 b/docker/Dockerfile.arm64v8 index 13ccb1269..afb8440f6 100644 --- a/docker/Dockerfile.arm64v8 +++ b/docker/Dockerfile.arm64v8 @@ -14,7 +14,7 @@ ADD . /app RUN [ "qemu-aarch64-static", "/bin/sh", "-c", \ "cp /app/data/configuration.yaml /app && \ cp /app/docker/run.sh /app && chmod +x /app/run.sh && \ - apk add --update --no-cache make gcc g++ python linux-headers udev nodejs=8.11.4-r0 npm=8.11.4-r0 git && \ + apk add --update --no-cache make gcc g++ python linux-headers udev nodejs npm git && \ npm install --unsafe-perm && \ apk del make gcc g++ python linux-headers udev git"]