From be1ed114f4e39fb32905124f50978596c4141b40 Mon Sep 17 00:00:00 2001 From: JustSong Date: Sat, 1 Feb 2025 01:37:21 +0800 Subject: [PATCH] chore: add gcc and sqlite-dev dependencies to Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 87dfd16e77..95c9f0f1c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ RUN DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$(cat /web/default/VERSION) n FROM golang:alpine AS builder2 RUN apk add --no-cache g++ +RUN apk add --no-cache gcc musl-dev libc-dev sqlite-dev ENV GO111MODULE=on \ CGO_ENABLED=1 \