We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 972fdc0 commit 278d88fCopy full SHA for 278d88f
Dockerfile
@@ -18,7 +18,7 @@ RUN echo -e "@tailwind base;\n@tailwind components;\n@tailwind utilities;" > /ap
18
RUN npx tailwindcss -i /app/public/tailwind.css -o /app/public/output.css --minify
19
20
# Stage 2: Build Go Application
21
-FROM golang:1.23-alpine AS build
+FROM golang:1.25-alpine AS build
22
WORKDIR /app
23
24
# Go files and dependencies
@@ -35,7 +35,7 @@ RUN apk add --no-cache gcc musl-dev
35
RUN go build -o main .
36
37
# Stage 3: Run the application
38
-FROM alpine:3.21
+FROM alpine:3.22
39
40
41
# Include license
go.mod
@@ -1,6 +1,6 @@
1
module chiyogami
2
3
-go 1.23.4
+go 1.25.1
4
5
require (
6
github.com/gorilla/mux v1.8.1
0 commit comments