Skip to content

Commit

Permalink
Change go version in Dockerfile to 1.22, add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Nazarevsky committed Mar 24, 2024
1 parent a05f598 commit 4a7df7d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Docker Image CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Vendor mod file
run: go mod vendor
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ghcr.io/debabky/voting-svc
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.20-alpine as buildbase
FROM golang:1.22-alpine as buildbase

RUN apk add git build-base

Expand Down

0 comments on commit 4a7df7d

Please sign in to comment.