diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 84867823..4f1c47bf 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -8,6 +8,7 @@ ENV PATH /usr/src/app/node_modules/.bin:$PATH COPY package.json /usr/src/app/package.json +RUN yarn config set "strict-ssl" false -g RUN yarn install # copy only required files to not trigger rebuilding every time diff --git a/frontend/run.sh b/frontend/run.sh index 819c0116..1f50c26c 100755 --- a/frontend/run.sh +++ b/frontend/run.sh @@ -5,7 +5,7 @@ docker rmi frikky/shuffle:frontend echo "Running build for website" #sudo npm run build -docker build . -t frikky/shuffle:frontend +docker build . -t ghcr.io/frikky/shuffle-frontend:nightly echo "Starting server" # Rerun build locally for it to update :)