summaryrefslogtreecommitdiff
diff options
from:
to:
context:
space:
mode:
authorGravatar SayaAndy <saya.andy@posteo.com> 2025-08-30 00:39:32 +0700
committerGravatar SayaAndy <saya.andy@posteo.com> 2025-08-30 00:39:32 +0700
commit3d79cbf98ef66d916a1d255857f97368d864ffb6 (patch)
tree3f5d22f6e3b43f9f5997882eb2a18ce9645c9c9a
parent78fe4481099fcf6666f1a259e38d9d828a253347 (diff)
downloadweb-3d79cbf98ef66d916a1d255857f97368d864ffb6.tar.gz
web-3d79cbf98ef66d916a1d255857f97368d864ffb6.zip
fix: add gcc to build stage
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 4388e5d..eeee6c5 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
FROM golang:1.24.6-alpine3.22 AS build-stage
-RUN apk add --no-cache sqlite-dev
+RUN apk add --no-cache sqlite-dev musl-dev gcc
WORKDIR /builddir
COPY . .