Explorar el Código

Fix: download pnpm in builder step

AH-dark hace 2 años
padre
commit
a4685400e7
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Dockerfile

+ 1 - 0
Dockerfile

@@ -14,6 +14,7 @@ COPY --from=deps ~/app/node_modules ./node_modules
 COPY . .
 
 # Build
+RUN curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
 RUN pnpm run build
 
 FROM nginx:stable-alpine AS runner