Merge pull request #846 from narindraditantyo/fix/rootless-backend-image

fix: backend image failed to start due to npm cache permission
This commit is contained in:
Maidul Islam
2023-08-11 16:31:11 -04:00
committed by GitHub

View File

@@ -14,6 +14,8 @@ FROM node:16-alpine
WORKDIR /app
ENV npm_config_cache /home/node/.npm
COPY package*.json ./
RUN npm ci --only-production