From afc43d62cd5fc1bd55ae931b069dd1a9e04e863f Mon Sep 17 00:00:00 2001 From: Patrick Hachicho Date: Tue, 29 Oct 2024 16:19:13 -0400 Subject: [PATCH] quick test --- .github/workflows/build-push-dev-image.yml | 20 ++++++++++---------- Dockerfile | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-push-dev-image.yml b/.github/workflows/build-push-dev-image.yml index 1f9438f..d9a145f 100644 --- a/.github/workflows/build-push-dev-image.yml +++ b/.github/workflows/build-push-dev-image.yml @@ -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: diff --git a/Dockerfile b/Dockerfile index 9bdfc34..a2e274a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 # Set the working directory