Skip to content

Commit 278d88f

Browse files
committed
move to go 1.25 + bump alpine runtime
1 parent 972fdc0 commit 278d88f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN echo -e "@tailwind base;\n@tailwind components;\n@tailwind utilities;" > /ap
1818
RUN npx tailwindcss -i /app/public/tailwind.css -o /app/public/output.css --minify
1919

2020
# Stage 2: Build Go Application
21-
FROM golang:1.23-alpine AS build
21+
FROM golang:1.25-alpine AS build
2222
WORKDIR /app
2323

2424
# Go files and dependencies
@@ -35,7 +35,7 @@ RUN apk add --no-cache gcc musl-dev
3535
RUN go build -o main .
3636

3737
# Stage 3: Run the application
38-
FROM alpine:3.21
38+
FROM alpine:3.22
3939
WORKDIR /app
4040

4141
# Include license

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module chiyogami
22

3-
go 1.23.4
3+
go 1.25.1
44

55
require (
66
github.com/gorilla/mux v1.8.1

0 commit comments

Comments
 (0)