b6b0f56980
- 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
10 lines
291 B
Docker
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" ]
|