From c0d5feb433cb1715a354651964f4dfcc4b32b97c Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 6 Jun 2022 22:46:53 +0200 Subject: [PATCH] Added comment --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d907daa8..4365eab9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM node:16.15-alpine as node COPY . /shlink-web-client ARG VERSION="latest" ENV VERSION ${VERSION} -RUN cd /shlink-web-client && npm ci && NODE_ENV=production npm run build +# TODO Remove --force once enzyme was removed +RUN cd /shlink-web-client && npm ci --force && NODE_ENV=production npm run build FROM nginx:1.21-alpine LABEL maintainer="Alejandro Celaya "