Skip to content

Commit

Permalink
Added step to build sample app Docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
oskardudycz committed May 17, 2024
1 parent 8efa0be commit 0d86368
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,18 @@ jobs:

- name: Test
run: npm run test

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2

- name: Build Docker
id: docker_build
uses: docker/build-push-action@v4
with:
context: "./samples/webApi/expressjs-with-esdb"
push: false
tags: oskardudycz/emmett.esdb.sample:latest

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 0d86368

Please sign in to comment.