Skip to content

Commit 3091fe4

Browse files
authored
Update Dockerfile 📝
The current `opencore-amr` and `lame` URL's SSL certificate seems to have expired which breaks the build when trying to `curl` them. Swap them for different ones. > Tested on macOS 10.14.6 with Docker 2.1.0.1
1 parent b386912 commit 3091fe4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ RUN \
8080
DIR=/tmp/opencore-amr && \
8181
mkdir -p ${DIR} && \
8282
cd ${DIR} && \
83-
curl -sL https://kent.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-${OPENCOREAMR_VERSION}.tar.gz | \
83+
curl -sL https://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-${OPENCOREAMR_VERSION}.tar.gz | \
8484
tar -zx --strip-components=1 && \
8585
./configure --prefix="${PREFIX}" --enable-shared && \
8686
make && \
@@ -176,7 +176,7 @@ RUN \
176176
DIR=/tmp/lame && \
177177
mkdir -p ${DIR} && \
178178
cd ${DIR} && \
179-
curl -sL https://kent.dl.sourceforge.net/project/lame/lame/$(echo ${LAME_VERSION} | sed -e 's/[^0-9]*\([0-9]*\)[.]\([0-9]*\)[.]\([0-9]*\)\([0-9A-Za-z-]*\)/\1.\2/')/lame-${LAME_VERSION}.tar.gz | \
179+
curl -sL https://sourceforge.net/projects/lame/files/lame/$(echo ${LAME_VERSION} | sed -e 's/[^0-9]*\([0-9]*\)[.]\([0-9]*\)[.]\([0-9]*\)\([0-9A-Za-z-]*\)/\1.\2/')/lame-${LAME_VERSION}.tar.gz | \
180180
tar -zx --strip-components=1 && \
181181
./configure --prefix="${PREFIX}" --bindir="${PREFIX}/bin" --enable-shared --enable-nasm --enable-pic --disable-frontend && \
182182
make && \

0 commit comments

Comments
 (0)