Skip to content

Commit

Permalink
Dockerfile front : Don't create directory if already exist
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreGauthier authored and romainruaud committed Jan 20, 2023
1 parent 44dfd65 commit 0d5fd4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN mkdir -p ./example-app/coverage ./pwa/coverage
RUN set -xe; \
apk add --no-cache curl; \
rm -rf pwa/node_modules/@elastic-suite/gally-admin-* example-app/node_modules/@elastic-suite/gally-admin-*; \
mkdir pwa/node_modules/@elastic-suite example-app/node_modules/@elastic-suite; \
mkdir -p pwa/node_modules/@elastic-suite example-app/node_modules/@elastic-suite; \
ln -Ts ../../../gally-admin/packages/components pwa/node_modules/@elastic-suite/gally-admin-components; \
ln -Ts ../../../gally-admin/packages/shared pwa/node_modules/@elastic-suite/gally-admin-shared; \
ln -Ts ../../../gally-admin/packages/components example-app/node_modules/@elastic-suite/gally-admin-components ; \
Expand Down

0 comments on commit 0d5fd4c

Please sign in to comment.