FROM debian:stable-slim RUN apt-get update && apt-get install -y \ curl \ file \ unzip \ zip \ && rm -rf /var/lib/apt/lists/* RUN curl -fsSL -o /tmp/warp-packer \ https://git.kirby-link.dd-dns.de/attachments/f701fbff-c58b-4aac-91e3-47efda1fc760 \ && install -D \ --mode=755 \ --owner=root \ --group=root \ /tmp/warp-packer \ /usr/local/bin \ && rm /tmp/warp-packer WORKDIR /workdir COPY warp4j /usr/local/bin/ ENTRYPOINT [ "/usr/local/bin/warp4j" ]