summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-04-13 19:02:53 +0530
committerBobby <[email protected]>2025-04-13 19:02:53 +0530
commitf0570d58b85a2f9546dc0217ceb98f2e2df0c769 (patch)
tree8c1dfcd51c2b720f50226f4356fd67597b8dbef0
parent9e0a0c1e8336daa6224c8e57fa1b90c748d45015 (diff)
downloadai-f0570d58b85a2f9546dc0217ceb98f2e2df0c769.tar.xz
ai-f0570d58b85a2f9546dc0217ceb98f2e2df0c769.zip
add `libopus-dev` at build time
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index ed35786..6249736 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 pkgconfig
+RUN apk add --no-cache git gcc musl-dev pkgconfig libopus-dev
# Set working directory
WORKDIR /app