Merge pull request 'Adding additional Dockerfile for x64 and updating url for warp-packer' (#12) from feature/using_aarch64_warp-packer into develop
All checks were successful
continuous-integration/drone Build is passing

Reviewed-on: #12
This commit is contained in:
David 2024-05-13 16:03:39 +02:00
commit 811686bba7
2 changed files with 21 additions and 1 deletions

View File

@ -7,7 +7,7 @@ RUN apt-get update && apt-get install -y \
zip \ zip \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN curl -fsSL -o /tmp/warp-packer \ 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 \ && install -D \
--mode=755 \ --mode=755 \
--owner=root \ --owner=root \

20
Dockerfile_x64_86 Normal file
View File

@ -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" ]