Skip to content

Commit

Permalink
fix(docker): Fixing ws docker push (#22303)
Browse files Browse the repository at this point in the history
  • Loading branch information
craig-rueda committed Dec 1, 2022
1 parent 347eec8 commit 2bdf22b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/docker_build_push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ docker build --target lean \
# Build the "websocket" image
#
docker build \
-t "${REPO_NAME}-websocket:${SHA}" \
-t "${REPO_NAME}-websocket:${REFSPEC}" \
-t "${REPO_NAME}-websocket:${LATEST_TAG}" \
-t "${REPO_NAME}:${SHA}-websocket" \
-t "${REPO_NAME}:${REFSPEC}-websocket" \
-t "${REPO_NAME}:${LATEST_TAG}-websocket" \
--label "sha=${SHA}" \
--label "built_at=$(date)" \
--label "target=lean" \
Expand Down Expand Up @@ -90,5 +90,4 @@ else
docker logout
docker login --username "${DOCKERHUB_USER}" --password "${DOCKERHUB_TOKEN}"
docker push --all-tags "${REPO_NAME}"
docker push --all-tags "${REPO_NAME}-websocket"
fi

0 comments on commit 2bdf22b

Please sign in to comment.