We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2624df2 commit ece6556Copy full SHA for ece6556
packaging/Dockerfile
@@ -17,9 +17,12 @@ ARG VERSION=v1.0pre7
17
ARG TARGET=debian
18
19
FROM alpine AS source
20
-RUN apk add git
+RUN apk add git curl patch
21
ARG VERSION
22
RUN git clone --depth=1 -b $VERSION https://github.com/ruediger/VobSub2SRT /source
23
+WORKDIR /source
24
+RUN curl -sSfLO https://github.com/ruediger/VobSub2SRT/pull/72.patch
25
+RUN patch -p1 < 72.patch
26
27
FROM debian:buster AS build-debian
28
RUN --mount=type=cache,id=apt,target=/var/cache/apt \
0 commit comments