diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 960827a..a50d9db 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -26,7 +26,6 @@ jobs: - name: Test and Build with yarn run: | - SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm_config_arch=x64 npm_config_platform=linux yarn workspace server add sharp yarn install yarn workspace client build diff --git a/.gitignore b/.gitignore index 6d0ee45..a0f1997 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .vscode -.DS_Store \ No newline at end of file +.DS_Store +.idea \ No newline at end of file diff --git a/Dockerfile-was b/Dockerfile-was index f417898..42fe700 100644 --- a/Dockerfile-was +++ b/Dockerfile-was @@ -4,7 +4,7 @@ WORKDIR /app ADD . /app -RUN SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm_config_arch=x64 npm_config_platform=linux yarn workspace server add sharp +RUN SHARP_IGNORE_GLOBAL_LIBVIPS=1 npm_config_arch=x64 npm_config_platform=linuxmusl yarn workspace server add sharp@0.32.1 RUN yarn workspace server build EXPOSE 3000