RC-7-A
Some checks failed
release-tag / release-image (push) Failing after 3m54s

This commit is contained in:
2026-08-11 17:01:57 +02:00
parent bcfbef390f
commit cf4a906593
3 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
FROM golang:1.23-alpine AS build
FROM golang:1.26-alpine AS build
WORKDIR /src
# Resolve dependencies before copying source. Do not run `go mod tidy` here.
@@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build \
-trimpath -ldflags="-s -w" \
-o /out/neuralhunt-customer-service ./cmd/customer-service
FROM alpine:3.21
FROM alpine:3.24
RUN adduser -D -h /home/app app \
&& mkdir -p /app /customer-data \
&& chown -R app:app /app /customer-data

View File

@@ -1,4 +1,4 @@
FROM golang:1.23-alpine AS build
FROM golang:1.26-alpine AS build
WORKDIR /src
# Resolve dependencies before copying source. Do not run `go mod tidy` here.
@@ -16,7 +16,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build \
-trimpath -ldflags="-s -w" \
-o /out/neuralhunt ./cmd/server
FROM alpine:3.21
FROM alpine:3.24
RUN adduser -D -h /home/app app \
&& mkdir -p /app /data \
&& chown -R app:app /app /data

View File

@@ -1,4 +1,4 @@
FROM golang:1.23-alpine AS build
FROM golang:1.26-alpine AS build
WORKDIR /src
# Resolve dependencies before copying source. Do not run `go mod tidy` here.
@@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build \
-trimpath -ldflags="-s -w" \
-o /out/neuralhunt-client ./cmd/client
FROM alpine:3.21
FROM alpine:3.24
RUN adduser -D -h /home/app app \
&& mkdir -p /app /identity \
&& chown -R app:app /app /identity