summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
from:
to:
context:
space:
mode:
authorGravatar Saya Andy <145215889+SayaAndy@users.noreply.github.com> 2026-05-04 15:55:49 +0700
committerGravatar GitHub <noreply@github.com> 2026-05-04 15:55:49 +0700
commit6c91e77c8712a234090c940111ea82ed9e0cd034 (patch)
treecb1411d0898ea7a5b5970c88831eaccd30478bc6 /Dockerfile
parentdbd3c0f30aeb9eedae6c6ccbcafa38872722da65 (diff)
parent38cb561f5f9048d26ac7f38176c928fd4e7f32df (diff)
downloadweb-6c91e77c8712a234090c940111ea82ed9e0cd034.tar.gz
web-6c91e77c8712a234090c940111ea82ed9e0cd034.zip
v0.15.6 (#36)v0.15.6
- [feat: integrate general use favicon.ico for search engines](https://github.com/SayaAndy/saya-today-web/commit/e3601faf8e98ac39be1aa746c9e20b837d09a037) - [ci: use ansible dev tools to speed up deploy step](https://github.com/SayaAndy/saya-today-web/commit/e3601faf8e98ac39be1aa746c9e20b837d09a037) - [ci: enable gha buildx cache](https://github.com/SayaAndy/saya-today-web/pull/36/commits/38cb561f5f9048d26ac7f38176c928fd4e7f32df) - [ci: use sha short from single source](https://github.com/SayaAndy/saya-today-web/pull/36/commits/38cb561f5f9048d26ac7f38176c928fd4e7f32df) - [ci: no strict host key checking in ci](https://github.com/SayaAndy/saya-today-web/pull/36/commits/7b1aca39816f4b82ddf9c4ced83275d56e1b8780)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 5c38111..318ca51 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,6 +4,7 @@ RUN apk add --no-cache sqlite-dev musl-dev gcc
WORKDIR /builddir
COPY . .
+RUN go mod download
RUN CGO_ENABLED=1 go build -o sayana-web .
FROM alpine:3.23 AS runtime-stage