Compare commits

..

1 Commits

Author SHA1 Message Date
david
97b3ca67e3 Using bash in Dockerfile run step
Some checks failed
continuous-integration/drone/pr Build is failing
2024-05-20 10:49:17 +02:00
2 changed files with 2 additions and 3 deletions

View File

@ -1,10 +1,9 @@
FROM debian:stable-slim FROM debian:stable-slim
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \
bash \
curl \ curl \
file \ file \
unzip \ unzip \
zip \ zip \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN ["/bin/bash", "-c", "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)"] RUN ["/usr/bin/bash", "-c", "$(curl -fsSL https://git.phoenix.ipv64.de/public/warp4j/raw/branch/feature/update_install_script/install)"]
ENTRYPOINT [ "/usr/local/bin/warp4j" ] ENTRYPOINT [ "/usr/local/bin/warp4j" ]

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/bin/env bash
# install location # install location
LOCATION=/usr/local/bin LOCATION=/usr/local/bin