diff options
| author | Bobby <[email protected]> | 2025-04-13 19:04:26 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-04-13 19:04:26 +0530 |
| commit | aa5fe2abb9b5f5966d34f41a6a48228075551452 (patch) | |
| tree | 7bfe49d88ec45a312c815c7c3d5a82eee1b5468c /Dockerfile | |
| parent | f0570d58b85a2f9546dc0217ceb98f2e2df0c769 (diff) | |
| download | ai-aa5fe2abb9b5f5966d34f41a6a48228075551452.tar.xz ai-aa5fe2abb9b5f5966d34f41a6a48228075551452.zip | |
fix typo from `liboups-dev` to `opus-dev`
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
