Skip to content

Commit f2168b4

Browse files
authored
dockerfile: fix gpac version to 2.4.0 (#1747)
GPAC renamed its libraries to `libgpac.so.13` causing image build to fail: ``` Error: building at STEP "COPY --from=builder /usr/local/lib/libgpac.so.12 /usr/local/lib/": checking on sources under "/home/pszemus/.local/share/containers/storage/overlay/faa4f2b5c39251a5cf42a97234d2d5652336a2388c96a64d85fc1922c4c43a71/merged": copier: stat: "/usr/local/lib/libgpac.so.12": no such file or directory ``` so let's fix the gpac version to the latest release (2.4.0)
1 parent 24f7184 commit f2168b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN apk add --no-cache --update git curl gcc cmake glew glfw \
77
zlib-dev libpng-dev libjpeg-turbo-dev openssl-dev freetype-dev libxml2-dev bash cargo
88

99
WORKDIR /root
10-
RUN git clone https://github.com/gpac/gpac
10+
RUN git clone -b v2.4.0 https://github.com/gpac/gpac
1111
WORKDIR /root/gpac/
1212
RUN ./configure && make -j$(nproc) && make install-lib
1313
WORKDIR /root
@@ -43,4 +43,4 @@ COPY --from=builder /usr/lib/libsharpyuv.so.0 /usr/lib/
4343

4444
COPY --from=builder /ccextractor /
4545

46-
ENTRYPOINT [ "/ccextractor" ]
46+
ENTRYPOINT [ "/ccextractor" ]

0 commit comments

Comments
 (0)