11 lines
349 B
Docker
11 lines
349 B
Docker
FROM debian:stable-slim
|
|
RUN apt-get update && apt-get install -y \
|
|
bash \
|
|
curl \
|
|
file \
|
|
unzip \
|
|
zip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN ["/bin/bash", "-c", "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)"]
|
|
ENTRYPOINT [ "/usr/local/bin/warp4j" ]
|