From c14f6f424f0db0bf251246442222fa3e6987e1d5 Mon Sep 17 00:00:00 2001 From: Anastasiia Derymarko Date: Tue, 10 May 2022 18:24:59 +0300 Subject: [PATCH] chore: fix publish dockerhub (#1991) --- config/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/docker/Dockerfile b/config/docker/Dockerfile index 55e5d0a9..bc54ee35 100644 --- a/config/docker/Dockerfile +++ b/config/docker/Dockerfile @@ -12,7 +12,7 @@ RUN apk update && apk add --no-cache git # Install dependencies WORKDIR /build COPY package.json package-lock.json /build/ -RUN npm ci --no-optional --ignore-scripts +RUN npm ci --no-optional --ignore-scripts --force # copy only required for the build files COPY src /build/src