10 lines
298 B
Docker
10 lines
298 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/master/install.sh | /bin/sh -s
|
|
ENTRYPOINT [ "/usr/local/bin/warp4j" ]
|