summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-04-13 19:01:12 +0530
committerBobby <[email protected]>2025-04-13 19:01:12 +0530
commit9e0a0c1e8336daa6224c8e57fa1b90c748d45015 (patch)
tree838bfefb1ac5dcc30b9697c75bdaf38eb0a5c31e
parent3f24195e763622f8dcf6c0eb22dd48b25052f68a (diff)
downloadai-9e0a0c1e8336daa6224c8e57fa1b90c748d45015.tar.xz
ai-9e0a0c1e8336daa6224c8e57fa1b90c748d45015.zip
add `pkgconfig` to Dockerfile to fix gopus build error
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 38f59bd..ed35786 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,7 +2,7 @@
FROM golang:1.24-alpine AS builder
# Install git and build tools
-RUN apk add --no-cache git gcc musl-dev
+RUN apk add --no-cache git gcc musl-dev pkgconfig
# Set working directory
WORKDIR /app