warp4j/Dockerfile
david c256e6e2ad
Some checks failed
continuous-integration/drone/pr Build is failing
Using bash in Dockerfile run step
2024-05-20 09:52:15 +02:00

10 lines
334 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 ["/bin/bash", "-c", "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)"]
ENTRYPOINT [ "/usr/local/bin/warp4j" ]