diff --git a/whitebophir_application_dockerfile b/whitebophir_application_dockerfile index 7439fd6..c3d07e7 100644 --- a/whitebophir_application_dockerfile +++ b/whitebophir_application_dockerfile @@ -12,10 +12,9 @@ RUN apk update && apk add libcap USER node -RUN wget https://github.com/lovasoa/whitebophir/archive/refs/tags/v${VERSION}.zip -O artifact.zip \ - && unzip artifact.zip \ - && mv whitebophir-${VERSION}/* . - && rm artifact.zip +RUN wget https://github.com/lovasoa/whitebophir/archive/refs/tags/v${VERSION}.tar.gz -O artifact.tar.gz \ + && tar --strip-components=1 -xvzf artifact.tar.gz \ + && rm artifact.tar.gz RUN npm ci --production