Skip to content

Commit

Permalink
Merge pull request #51 from opendwellers/dependabot/github_actions/do…
Browse files Browse the repository at this point in the history
…cker/build-push-action-6

Bump docker/build-push-action from 5 to 6
  • Loading branch information
gravufo authored Dec 23, 2024
2 parents ad3ce15 + d67cc34 commit 4880050
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6

push:
runs-on: ubuntu-latest
Expand All @@ -45,7 +45,7 @@ jobs:

- name: Push image
id: docker_build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
tags: ${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23-alpine as build
FROM golang:1.23-alpine AS build

RUN apk add --no-cache make git

Expand All @@ -11,5 +11,5 @@ RUN make build
FROM alpine
WORKDIR /app
COPY --from=build /app/bin/jujubot /app
ENV CONFIG_PATH /config
ENV CONFIG_PATH="/config"
ENTRYPOINT [ "/app/jujubot" ]

0 comments on commit 4880050

Please sign in to comment.