-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
acropalypse: removes curl options used accidentally with wget
- Loading branch information
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,15 +4,18 @@ LABEL org.opencontainers.image.authors="[email protected]" | |
|
||
WORKDIR /polytracker/acropalypse | ||
|
||
RUN apt-get update && \ | ||
apt-get install wget && \ | ||
wget https://downloads.sourceforge.net/libpng/libpng-1.6.39.tar.xz && \ | ||
tar xvf libpng-1.6.39.tar.xz | ||
|
||
RUN curl -L https://downloads.sourceforge.net/libpng/libpng-1.6.39.tar.xz --output libpng.tar.xz | ||
RUN tar xvf libpng.tar.xz | ||
WORKDIR /polytracker/acropalypse/libpng-1.6.39 | ||
|
||
RUN curl -L https://zlib.net/zlib-1.2.13.tar.xz --output zlib.tar.xz | ||
RUN tar xf zlib.tar.xz | ||
RUN wget https://zlib.net/fossils/zlib-1.2.13.tar.gz && \ | ||
tar xvf zlib-1.2.13.tar.gz | ||
|
||
WORKDIR /polytracker/acropalypse/libpng-1.6.39/zlib-1.2.13/ | ||
|
||
RUN polytracker build ./configure | ||
RUN polytracker build make | ||
RUN polytracker extract-bc -o ../libz.bc libz.a | ||
|