warp4j/Dockerfile
david 51337c59d0
All checks were successful
continuous-integration/drone Build is passing
Removing binutils and using correct strip depending on java version
2024-05-15 06:46:06 +02:00

20 lines
551 B
Docker

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.phoenix.ipv64.de/public/warp/releases/download/v0.3.0/aarch64-linux.warp-packer \
&& 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" ]