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
RUN apt-get update && apt-get install -y \
bash \
curl \
file \
unzip \
zip \
&& 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" ]

View File

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