summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorBobby <[email protected]>2025-04-13 19:04:26 +0530
committerBobby <[email protected]>2025-04-13 19:04:26 +0530
commitaa5fe2abb9b5f5966d34f41a6a48228075551452 (patch)
tree7bfe49d88ec45a312c815c7c3d5a82eee1b5468c /Dockerfile
parentf0570d58b85a2f9546dc0217ceb98f2e2df0c769 (diff)
downloadai-aa5fe2abb9b5f5966d34f41a6a48228075551452.tar.xz
ai-aa5fe2abb9b5f5966d34f41a6a48228075551452.zip
fix typo from `liboups-dev` to `opus-dev`
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dockerfile b/Dockerfile
index 6249736..3716acd 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,8 +1,8 @@
# Build stage
FROM golang:1.24-alpine AS builder
-# Install git and build tools
-RUN apk add --no-cache git gcc musl-dev pkgconfig libopus-dev
+# Install git, build tools, pkgconfig, and opus headers
+RUN apk add --no-cache git gcc musl-dev pkgconfig opus-dev
# Set working directory
WORKDIR /app
@@ -24,7 +24,7 @@ FROM alpine:3.21
WORKDIR /app
# Install runtime dependencies
-RUN apk add --no-cache ffmpeg python3 py3-pip opus libopus-dev ca-certificates && \
+RUN apk add --no-cache ffmpeg python3 py3-pip opus opus-dev ca-certificates && \
pip3 install --no-cache-dir yt-dlp && \
mkdir -p /app/temp