summaryrefslogtreecommitdiffci
path: root/Dockerfile
diff options
from:
to:
context:
space:
mode:
authorGravatar Saya Andy <saya.andy@posteo.com> 2026-06-22 19:56:35 +0700
committerGravatar Saya Andy <saya.andy@posteo.com> 2026-06-22 19:56:35 +0700
commit367a816cade114e7c7dea85520f84d444f4ed7d6 (patch)
tree5678fdd86f8c0c186575cf02884187fcf2e02c5d /Dockerfile
parent3e75a5457e9a7e3df9f0808a2ea518412616a935 (diff)
downloadweb-367a816cade114e7c7dea85520f84d444f4ed7d6.tar.gz
web-367a816cade114e7c7dea85520f84d444f4ed7d6.zip
feat: jenkinsfile for local jenkins server
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 44d1ea2..58ba7f4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM golang:1.26-alpine3.23 AS build-stage
+FROM golang:1.26.4-alpine3.24 AS build-stage
RUN apk add --no-cache sqlite-dev musl-dev gcc
@@ -7,7 +7,7 @@ COPY . .
RUN go mod download
RUN CGO_ENABLED=1 go build -o sayana-web .
-FROM alpine:3.23 AS runtime-stage
+FROM alpine:3.24 AS runtime-stage
ENV ENVIRONMENT=""
ENV AUTH_SALT=""