Skip to content

Commit

Permalink
chore: bump docker base image
Browse files Browse the repository at this point in the history
  • Loading branch information
mirdhyn committed Oct 5, 2022
1 parent 5c11111 commit 8cc55a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/continous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: "Continous Delivery Workflow"
workflow_call:

env:
GO_VERSION: "1.18.0"
GO_VERSION: "1.19.0"

jobs:
release-docker:
Expand Down Expand Up @@ -42,14 +42,14 @@ jobs:
tags: ghcr.io/${{ github.repository }}:latest,ghcr.io/${{ github.repository }}:${{ github.sha }},ghcr.io/${{ github.repository }}:${{ github.ref_name }}

# public registry builds
- name: Build and push
uses: docker/build-push-action@v3
if: ${{!github.event.repository.private}}
with:
context: .
build-args: GO_VERSION=${{env.GO_VERSION}}
push: true
tags: ${{ github.repository }}:latest,${{ github.repository }}:${{ github.sha }},${{ github.repository }}:${{ github.ref_name }}
#- name: Build and push
# uses: docker/build-push-action@v3
# if: ${{!github.event.repository.private}}
# with:
# context: .
# build-args: GO_VERSION=${{env.GO_VERSION}}
# push: true
# tags: ${{ github.repository }}:latest,${{ github.repository }}:${{ github.sha }},${{ github.repository }}:${{ github.ref_name }}


release-binary:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# FILE IS AUTOMATICALLY MANAGED BY github.com/vegaprotocol/terraform//github
ARG GO_VERSION=1.18.0
ARG GO_VERSION=1.19.0
ARG ALPINE_VERSION=3.16
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS builder
RUN mkdir /build
Expand Down

0 comments on commit 8cc55a5

Please sign in to comment.