diff --git a/Dockerfile b/Dockerfile index 3ad754a..3e29398 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \ zip \ && rm -rf /var/lib/apt/lists/* RUN curl -fsSL -o /tmp/warp-packer \ - https://git.phoenix.ipv64.de/attachments/f701fbff-c58b-4aac-91e3-47efda1fc760 \ + https://git.phoenix.ipv64.de/public/warp/releases/download/v0.3.0/linux-aarch64-warp-packer \ && install -D \ --mode=755 \ --owner=root \ diff --git a/Dockerfile_x64_86 b/Dockerfile_x64_86 new file mode 100644 index 0000000..7eec846 --- /dev/null +++ b/Dockerfile_x64_86 @@ -0,0 +1,20 @@ +FROM debian:stable-slim +RUN apt-get update && apt-get install -y \ + binutils \ + curl \ + file \ + unzip \ + zip \ + && rm -rf /var/lib/apt/lists/* +RUN curl -fsSL -o /tmp/warp-packer \ + https://git.phoenix.ipv64.de/public/warp/releases/download/v0.3.0/linux-x64.warp-packer \ + && install -D \ + --mode=755 \ + --owner=root \ + --group=root \ + /tmp/warp-packer \ + /usr/local/bin \ + && rm /tmp/warp-packer +WORKDIR /workdir +COPY warp4j /usr/local/bin/ +ENTRYPOINT [ "/usr/local/bin/warp4j" ]