From 1b701ec3c82e36cf6692314437495c2a6364b8c1 Mon Sep 17 00:00:00 2001 From: Claudemir Todo Bom Date: Tue, 30 Jul 2024 20:56:31 -0300 Subject: [PATCH] correct package name --- .github/workflows/build-docker.yml | 6 +++--- {node-alpine => node}/Dockerfile | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename {node-alpine => node}/Dockerfile (100%) diff --git a/.github/workflows/build-docker.yml b/.github/workflows/build-docker.yml index e011557..caa4f55 100644 --- a/.github/workflows/build-docker.yml +++ b/.github/workflows/build-docker.yml @@ -7,7 +7,7 @@ on: env: REGISTRY: ghcr.io IMAGE_NGINX: ticketz-oss/nginx-alpine - IMAGE_NODE: ticketz-oss/node-alpine + IMAGE_NODE: ticketz-oss/node jobs: build-and-push-images: @@ -55,7 +55,7 @@ jobs: images: | ${{ env.REGISTRY }}/${{ env.IMAGE_NODE }} labels: | - org.opencontainers.image.title=ticketz-node-alpine + org.opencontainers.image.title=ticketz-node tags: | type=ref,event=branch type=semver,pattern={{version}} @@ -77,7 +77,7 @@ jobs: id: node uses: docker/build-push-action@v2 with: - context: ./node-alpine + context: ./node push: true platforms: linux/amd64,linux/arm64 tags: ${{ steps.metanode.outputs.tags }} diff --git a/node-alpine/Dockerfile b/node/Dockerfile similarity index 100% rename from node-alpine/Dockerfile rename to node/Dockerfile