diff --git a/README.md b/README.md index f5dc8ae1..00cf8af2 100644 --- a/README.md +++ b/README.md @@ -181,6 +181,7 @@ docker login command with your GitHub username and a Personal Access Token (PAT) echo "YOUR_PERSONAL_ACCESS_TOKEN" | docker login ghcr.io -u YOUR_GITHUB_USERNAME --password-stdin ``` +For pushing new images make sure that your token that has enough permissions and has authorization for the Deltares orginization (sso). ## How to Cite diff --git a/build-image.sh b/build-image.sh index 21dc6478..0394596d 100644 --- a/build-image.sh +++ b/build-image.sh @@ -3,8 +3,6 @@ export IMAGE_ID="decoimpact" export VERSION="latest" export ARTIFACT_REGISTRY_URL="ghcr.io/deltares" export TAG="${ARTIFACT_REGISTRY_URL}/${IMAGE_ID}:${VERSION}" - docker build . --file Dockerfile --tag "${TAG}" - ## Pushes image to Artifact Registry docker push "${TAG}"