Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions common/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ fi

chown -R $UID:$GID /opt/JDownloader

# Sometimes this gets deleted. Just copy it every time.
cp /opt/JDownloader/sevenzip* /opt/JDownloader/libs/

su-exec ${UID}:${GID} "$@"

# Keep container alive when jd2 restarts
Expand Down
Binary file removed common/sevenzipjbinding1509.jar
Binary file not shown.
Binary file removed common/sevenzipjbinding1509Linux.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions debian.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:11-jre-slim-sid
FROM docker.io/openjdk:11-jre-slim-bullseye

MAINTAINER PlusMinus <piddlpiddl@gmail.com>

Expand All @@ -12,7 +12,7 @@ RUN apt-get update && apt-get dist-upgrade -yqq && \
wget -O /tmp/su-exec.tar.gz https://github.com/ncopa/su-exec/archive/v0.2.tar.gz && \
cd /tmp/ && tar -xf su-exec.tar.gz && cd su-exec-0.2 && make && cp su-exec /usr/bin &&\
apt-get purge -yqq wget make gcc && apt-get autoremove -yqq && cd / && rm -rf /tmp/*
# Beta sevenzipbindings and entrypoint

COPY common/* /opt/JDownloader/
RUN chmod +x /opt/JDownloader/entrypoint.sh

Expand Down