diff options
author | Liran Tal <liran.tal@gmail.com> | 2021-06-24 15:30:42 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-24 15:30:42 +0300 |
commit | f85fb02cfde14b2ecbaaaca8979d41157bc5ab43 (patch) | |
tree | 20edb91c6f082e49bf2fb617637dfcf3887035da | |
parent | d9eb9c5220e603673e8ff44a119070b1b52b22a7 (diff) |
fix: build image based on pinned deps in the project (#170)v3.21.1
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,6 +8,6 @@ RUN apk update && apk upgrade && apk add docker && rm -rf /var/apk/cache/* COPY . /app WORKDIR /app ENV NODE_ENV production -RUN yarn install +RUN yarn install --frozen-lockfile CMD ["node", "index.js"] |