Compare commits

..
Author SHA1 Message Date
Pierre Dubouilh 5d8b8d87ee generalise docker images 2024-08-30 16:04:46 +02:00
Pierre Dubouilh 355752f9a7 fixup docker CI 2024-08-30 16:03:39 +02:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.4
go-version: 1.23.0
id: go
- name: Run
+1 -1
View File
@@ -1,4 +1,4 @@
FLAGS := -trimpath -ldflags="-w -s"
FLAGS := -trimpath
NOCGO := CGO_ENABLED=0
build::
+1 -1
View File
@@ -1,3 +1,3 @@
module github.com/pldubouilh/gossa
go 1.23.4
go 1.23.0
+1 -1
View File
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.23.4-alpine AS builder
FROM docker.io/library/golang:1.23.0-alpine AS builder
RUN apk add --no-cache make
WORKDIR /gossaSrc
COPY . /gossaSrc