Compare commits

...

2 commits

Author SHA1 Message Date
b363b87013
And fix it not using go 1.24 from the start
All checks were successful
/ docker (push) Successful in 4m24s
2025-05-10 11:29:19 +02:00
3cd9644cb9
Fix dockerfile not being able to pull correct go version 2025-05-10 11:28:58 +02:00

View file

@ -4,12 +4,12 @@ COPY . /app
WORKDIR /app/frontend-reactive
RUN npm install && npm run build
FROM docker.io/golang:1.23 AS build-go
FROM docker.io/golang:1.24 AS build-go
# TODO: Implement golang build
COPY --from=build-ember /app /app
WORKDIR /app
RUN CGO_ENABLED=0 go build -o /app/linstrom .
RUN CGO_ENABLED=0 GOTOOLCHAIN=auto GOSUMDB=sum.golang.org go build -o /app/linstrom .
# FROM fedora:latest AS release
FROM alpine:3 AS release