warp4j/Dockerfile
david 9db9f5ce3c
All checks were successful
continuous-integration/drone/pr Build is passing
Using su instead of sudo, fixing Dokcerfile
2024-05-20 15:23:42 +02:00

10 lines
318 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 -s https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install | /bin/sh -s
ENTRYPOINT [ "/usr/local/bin/warp4j" ]