warp4j/Dockerfile
david 14e7aaf812
Some checks failed
continuous-integration/drone/pr Build is failing
Using install script in Dockerfile
2024-05-20 09:32:59 +02:00

10 lines
215 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 ./install
ENTRYPOINT [ "/usr/local/bin/warp4j" ]