Skip to content

Commit

Permalink
fix image size
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymoulin committed Oct 6, 2017
1 parent dd18530 commit 949caf0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@ MAINTAINER Jay MOULIN <[email protected]>
# archive extraction uses sevenzipjbinding library
# which is compiled against libstdc++
RUN mkdir /opt/JDownloader/
RUN apk update && \
apk add --update libstdc++ && apk add wget --virtual .build-deps && \
RUN apk add --update libstdc++ ffmpeg && apk add wget --virtual .build-deps && \
wget -O /opt/JDownloader/JDownloader.jar "http://installer.jdownloader.org/JDownloader.jar?$RANDOM" && chmod +x /opt/JDownloader/JDownloader.jar && \
wget -O /sbin/tini "https://github.com/krallin/tini/releases/download/v0.16.1/tini-static-armhf" --no-check-certificate && chmod +x /sbin/tini && \
apk del wget --purge .build-deps && \
apk add ffmpeg
apk del wget --purge .build-deps
ENV LD_LIBRARY_PATH=/lib;/lib32;/usr/lib


Expand Down

0 comments on commit 949caf0

Please sign in to comment.