warp4j/Dockerfile

10 lines
298 B
Docker
Raw Normal View History

2019-02-16 20:12:49 +01:00
FROM debian:stable-slim
RUN apt-get update && apt-get install -y \
curl \
file \
unzip \
zip \
&& rm -rf /var/lib/apt/lists/*
2024-05-20 20:29:59 +02:00
RUN curl -s https://git.phoenix.ipv64.de/public/warp4j/raw/branch/master/install.sh | /bin/sh -s
2019-02-16 20:12:49 +01:00
ENTRYPOINT [ "/usr/local/bin/warp4j" ]