warp4j/Dockerfile

11 lines
349 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 \
2024-05-20 10:04:01 +02:00
bash \
2019-02-16 20:12:49 +01:00
curl \
file \
unzip \
zip \
&& rm -rf /var/lib/apt/lists/*
2024-05-20 09:52:15 +02:00
RUN ["/bin/bash", "-c", "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)"]
2019-02-16 20:12:49 +01:00
ENTRYPOINT [ "/usr/local/bin/warp4j" ]