diff options
| author | 2026-04-08 08:22:40 +0700 | |
|---|---|---|
| committer | 2026-04-08 08:22:40 +0700 | |
| commit | a3aa1dd07abfbbb27a7dfeeb536a6fcc51709256 (patch) | |
| tree | 5c997d8efcfec65a68aba392f787f8191b8009d5 /Dockerfile | |
| parent | 81a9147c5406e3b2f2441373b935d7c5de2780da (diff) | |
| download | web-a3aa1dd07abfbbb27a7dfeeb536a6fcc51709256.tar.gz web-a3aa1dd07abfbbb27a7dfeeb536a6fcc51709256.zip | |
feat: update all github actions, golang dependencies, golang to 1.26, alpine to 3.23
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -FROM golang:1.25.3-alpine3.22 AS build-stage +FROM golang:1.26-alpine3.23 AS build-stage RUN apk add --no-cache sqlite-dev musl-dev gcc @@ -6,7 +6,7 @@ WORKDIR /builddir COPY . . RUN CGO_ENABLED=1 go build -o sayana-web . -FROM alpine:3.22.2 AS runtime-stage +FROM alpine:3.23 AS runtime-stage ENV ENVIRONMENT="" ENV AUTH_SALT="" |