966a3b753e
All checks were successful
continuous-integration/drone/pr Build is passing
Changing temp the url for Dockerfile Removing bash specific commands in install script Using su instead of sudo, fixing Dokcerfile
10 lines
318 B
Docker
10 lines
318 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/feature/update_install_script/install | /bin/sh -s
|
|
ENTRYPOINT [ "/usr/local/bin/warp4j" ]
|