diff --git a/latest/Dockerfile b/latest/Dockerfile index d52c732..636a2d8 100644 --- a/latest/Dockerfile +++ b/latest/Dockerfile @@ -1,6 +1,6 @@ FROM node:alpine AS base -ENV PNPM_HOME="./.pnpm" \ - PATH="$PNPM_HOME:$PATH" +ENV PNPM_HOME="./.pnpm" +ENV PATH=$PNPM_HOME:$PATH RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - &&\ apk add --no-cache openssl USER node \ No newline at end of file diff --git a/lts/Dockerfile b/lts/Dockerfile index 4658129..7544580 100644 --- a/lts/Dockerfile +++ b/lts/Dockerfile @@ -1,6 +1,6 @@ FROM node:lts-alpine AS base -ENV PNPM_HOME="./.pnpm" \ - PATH="$PNPM_HOME:$PATH" +ENV PNPM_HOME="./.pnpm" +ENV PATH=$PNPM_HOME:$PATH RUN wget -qO- https://get.pnpm.io/install.sh | ENV="$HOME/.shrc" SHELL="$(which sh)" sh - &&\ apk add --no-cache openssl USER node \ No newline at end of file