warp4j/Dockerfile
David b6b0f56980 - Install script improved to run with /bin/sh
- Dockerfile changed to use install.sh script (Works on x64 and aarch64
architecture)
- Dockerfile_x64 with old build script for tests
- Script warp4j improved to support to run on aarch64 architecture

Cleaning up repository
Updating compatibility in README.md
2024-05-20 21:39:31 +02:00

10 lines
291 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://github.com/kirbylink/warp4j/raw/branch/master/install.sh | /bin/sh -s
ENTRYPOINT [ "/usr/local/bin/warp4j" ]