warp4j/Dockerfile
david af4f43cad9
Some checks failed
continuous-integration/drone/pr Build is failing
Adding bash to Docker image
2024-05-20 10:04:01 +02:00

11 lines
349 B
Docker

FROM debian:stable-slim
RUN apt-get update && apt-get install -y \
bash \
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" ]