Skip to content

Commit 0cee6f5

Browse files
committed
Update links in Dockerfile.raspberrypi
Some links used in Dockerfile.raspberrypi are not accessible anymore, because they were pointing to old versions of some source packages and new versions were released. This commit fixes this by changing the links to point to the newest versions.
1 parent 857d6a2 commit 0cee6f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile.raspberrypi

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ENV TOOL_BIN_DIR /tools/arm-bcm2708/gcc-linaro-$HOST-raspbian-x64/bin
1717
ENV PATH ${TOOL_BIN_DIR}:$PATH
1818

1919
RUN mkdir $LOCAL_DIR && mkdir zlib && cd zlib && \
20-
curl -Ls -o - 'http://zlib.net/zlib-1.2.8.tar.gz' | \
20+
curl -Ls -o - 'http://zlib.net/zlib-1.2.11.tar.gz' | \
2121
tar xzf - --strip-components=1 && \
2222
prefix=${LOCAL_DIR} \
2323
CC=$HOST-gcc \
@@ -31,7 +31,7 @@ RUN mkdir $LOCAL_DIR && mkdir zlib && cd zlib && \
3131
make -s install
3232

3333
RUN mkdir -p expat && cd expat && \
34-
curl -Ls -o - 'http://sourceforge.net/projects/expat/files/latest/download' | \
34+
curl -Ls -o - 'https://sourceforge.net/projects/expat/files/expat/2.2.0/expat-2.2.0.tar.bz2/download' | \
3535
tar xjf - --strip-components=1 && \
3636
./configure \
3737
--host=$HOST \

0 commit comments

Comments
 (0)