warp4j/Dockerfile
david d91c6f6896
Some checks failed
continuous-integration/drone/pr Build is failing
Cleaning up code and setting temporary download url to develop branch
2024-05-20 18:25:20 +02:00

10 lines
299 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/develop/install.sh | /bin/sh -s
ENTRYPOINT [ "/usr/local/bin/warp4j" ]