From c55317ea770919de3b42d341085d0d9c64b78930 Mon Sep 17 00:00:00 2001 From: einhorn_b Date: Mon, 10 Jul 2023 18:15:00 +0200 Subject: [PATCH] fix problem with unit test --- dlt-connector/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlt-connector/Dockerfile b/dlt-connector/Dockerfile index 800af9177..9d75e3480 100644 --- a/dlt-connector/Dockerfile +++ b/dlt-connector/Dockerfile @@ -67,7 +67,7 @@ FROM base as build COPY ./dlt-connector/ ./ # yarn install dlt-connector -RUN yarn install --production=false --frozen-lockfile --non-interactive +RUN yarn cache clean && yarn install --production=false --frozen-lockfile --non-interactive # yarn build RUN yarn run build @@ -106,4 +106,4 @@ COPY --from=build ${DOCKER_WORKDIR}/log4js-config.json ./log4js-config.json # COPY --from=build ${DOCKER_WORKDIR}/run ./run # Run command -CMD /bin/sh -c "yarn run start" \ No newline at end of file +CMD /bin/sh -c "yarn run start"