Skip to content

Commit

Permalink
docker: correct reference in opencv image to ffmpeg image
Browse files Browse the repository at this point in the history
Signed-off-by: deadprogram <[email protected]>
  • Loading branch information
deadprogram committed Oct 18, 2024
1 parent 19c5a18 commit 5eed70f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.opencv-static-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM --platform=linux/amd64 ghcr.io/hybridgroup/gstreamer:1.24-alpine AS gstream
FROM --platform=linux/arm64 ghcr.io/hybridgroup/gstreamer:1.24-alpine AS gstreamer-arm64

# Stage 1: Build OpenCV
FROM --platform=linux/amd64 ghcr.io/hybridgroup/ffmpeg:5.1.6-alpine AS builder-amd64
FROM --platform=linux/amd64 ghcr.io/hybridgroup/ffmpeg:5.16-alpine AS builder-amd64

# Install dependencies
RUN apk update && apk add --no-cache \
Expand Down Expand Up @@ -86,7 +86,7 @@ RUN cmake -D CMAKE_BUILD_TYPE=Release \
make -j$(nproc) && \
make install

FROM --platform=linux/arm64 ghcr.io/hybridgroup/ffmpeg:5.1.6-alpine AS builder-arm64
FROM --platform=linux/arm64 ghcr.io/hybridgroup/ffmpeg:5.16-alpine AS builder-arm64

# Install dependencies
RUN apk update && apk add --no-cache \
Expand Down

0 comments on commit 5eed70f

Please sign in to comment.