summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiran Tal <liran.tal@gmail.com>2021-06-24 15:30:42 +0300
committerGitHub <noreply@github.com>2021-06-24 15:30:42 +0300
commitf85fb02cfde14b2ecbaaaca8979d41157bc5ab43 (patch)
tree20edb91c6f082e49bf2fb617637dfcf3887035da
parentd9eb9c5220e603673e8ff44a119070b1b52b22a7 (diff)
fix: build image based on pinned deps in the project (#170)v3.21.1
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 9f8aebe..252e182 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -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"]