warp4j/Dockerfile
david 966a3b753e
All checks were successful
continuous-integration/drone/pr Build is passing
Fixing Dockerfile
Changing temp the url for Dockerfile
Removing bash specific commands in install script
Using su instead of sudo, fixing Dokcerfile
2024-05-20 15:29:51 +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" ]