Skip to content

Commit

Permalink
quick test
Browse files Browse the repository at this point in the history
  • Loading branch information
pchachicho committed Oct 29, 2024
1 parent 0e33d3f commit afc43d6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build-push-dev-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
name: Build-Push-Dev-Image
on:
push:
branches:
- develop
paths-ignore:
- README.md
- .github/*
- .github/workflows/*
- LICENSE
- .gitignore
- .dockerignore
- .githooks
# branches:
# - develop
# paths-ignore:
# - README.md
# - .github/*
# - .github/workflows/*
# - LICENSE
# - .gitignore
# - .dockerignore
# - .githooks
# Do not build another image on a pull request.
# Any push to develop will trigger a new build however.
pull_request:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the official Golang image to build the binary
FROM golang:1.20 AS build
FROM golang:1.23 AS build
ENV CGO_ENABLED = 0

Check warning on line 3 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-test / test-image-build

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

Check warning on line 3 in Dockerfile

View workflow job for this annotation

GitHub Actions / build-push-dev-image / build-push-dev-image

Legacy key/value format with whitespace separator should not be used

LegacyKeyValueFormat: "ENV key=value" should be used instead of legacy "ENV key value" format More info: https://docs.docker.com/go/dockerfile/rule/legacy-key-value-format/

# Set the working directory
Expand Down

0 comments on commit afc43d6

Please sign in to comment.