Skip to content

Commit 90dbc3f

Browse files
fix: fix dockerfiles path for dockerhub images (#485)
1 parent 989b666 commit 90dbc3f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/actions/build_docker_images/action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,45 +53,45 @@ runs:
5353
uses: docker/build-push-action@v4
5454
with:
5555
context: .
56-
file: ./docker/node/Dockerfile
56+
file: ./docker/dockerfiles/node/Dockerfile
5757
tags: cardanofoundation/cardano-rosetta-java-cardano-node:${{ inputs.tag }}
5858
push: true
5959
- name: Cardano Node - Build and push Docker latest image
6060
uses: docker/build-push-action@v4
6161
if: ${{ inputs.isRelease == 'true' }}
6262
with:
6363
context: .
64-
file: ./docker/node/Dockerfile
64+
file: ./docker/dockerfiles/node/Dockerfile
6565
tags: cardanofoundation/cardano-rosetta-java-cardano-node:latest
6666
push: true
6767
- name: Postgres - Build and push Docker ${{ inputs.tag }} image
6868
uses: docker/build-push-action@v4
6969
with:
7070
context: .
71-
file: ./docker/postgres/Dockerfile
71+
file: ./docker/dockerfiles/postgres/Dockerfile
7272
tags: cardanofoundation/cardano-rosetta-java-postgres:${{ inputs.tag }}
7373
push: true
7474
- name: Postgres - Build and push Docker latest image
7575
uses: docker/build-push-action@v4
7676
if: ${{ inputs.isRelease == 'true' }}
7777
with:
7878
context: .
79-
file: ./docker/postgres/Dockerfile
79+
file: ./docker/dockerfiles/postgres/Dockerfile
8080
tags: cardanofoundation/cardano-rosetta-java-postgres:latest
8181
push: true
8282
- name: Mithril - Build and push Docker ${{ inputs.tag }} image
8383
uses: docker/build-push-action@v4
8484
with:
8585
context: .
86-
file: ./docker/mithril/Dockerfile
86+
file: ./docker/dockerfiles/mithril/Dockerfile
8787
tags: cardanofoundation/cardano-rosetta-java-mithril:${{ inputs.tag }}
8888
push: true
8989
- name: Mithril - Build and push Docker latest image
9090
uses: docker/build-push-action@v4
9191
if: ${{ inputs.isRelease == 'true' }}
9292
with:
9393
context: .
94-
file: ./docker/mithril/Dockerfile
94+
file: ./docker/dockerfiles/mithril/Dockerfile
9595
tags: cardanofoundation/cardano-rosetta-java-mithril:latest
9696
push: true
9797
- name: All-in-one - Build and push Docker image

0 commit comments

Comments
 (0)