fix: use correct go image in docker build

This commit is contained in:
Stavros
2026-03-30 19:21:50 +03:00
parent 7bfee6efc2
commit 7139ad1cc6
3 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ COPY ./frontend/vite.config.ts ./
RUN bun run build RUN bun run build
# Builder # Builder
FROM golang:1.26-alpine3.21 AS builder FROM golang:1.26-alpine3.23 AS builder
ARG VERSION ARG VERSION
ARG COMMIT_HASH ARG COMMIT_HASH

View File

@@ -1,4 +1,4 @@
FROM golang:1.26-alpine3.21 FROM golang:1.26-alpine3.23
WORKDIR /tinyauth WORKDIR /tinyauth

View File

@@ -20,7 +20,7 @@ COPY ./frontend/vite.config.ts ./
RUN bun run build RUN bun run build
# Builder # Builder
FROM golang:1.26-alpine3.21 AS builder FROM golang:1.26-alpine3.23 AS builder
ARG VERSION ARG VERSION
ARG COMMIT_HASH ARG COMMIT_HASH