diff --git a/Dockerfile b/Dockerfile index 59d5739..254ec06 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,16 +8,15 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA LABEL maintainer="chbmb" # environment settings -ENV NODE_ENV production -ENV PUPPETEER_SKIP_DOWNLOAD true -ENV YARN_CACHE_FOLDER=/tmp/.yarn +ENV NODE_ENV=production \ + PUPPETEER_SKIP_DOWNLOAD=true \ + YARN_CACHE_FOLDER=/tmp/.yarn RUN \ echo "**** install build packages ****" && \ apk add -U --no-cache \ fontconfig \ font-noto \ - netcat-openbsd \ nodejs-current && \ apk add -U --no-cache --virtual=build-dependencies \ build-base \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 0969d55..18e85be 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -8,16 +8,15 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA LABEL maintainer="chbmb" # environment settings -ENV NODE_ENV production -ENV PUPPETEER_SKIP_DOWNLOAD true -ENV YARN_CACHE_FOLDER=/tmp/.yarn +ENV NODE_ENV=production \ + PUPPETEER_SKIP_DOWNLOAD=true \ + YARN_CACHE_FOLDER=/tmp/.yarn RUN \ echo "**** install build packages ****" && \ apk add -U --no-cache \ fontconfig \ font-noto \ - netcat-openbsd \ nodejs-current && \ apk add -U --no-cache --virtual=build-dependencies \ build-base \