Compare commits

..

2 Commits

Author SHA1 Message Date
david
af4f43cad9 Adding bash to Docker image
Some checks failed
continuous-integration/drone/pr Build is failing
2024-05-20 10:04:01 +02:00
david
2e3560c24c Revert "Using #!/usr/bin/bash instead of #!/usr/bin/env bash"
This reverts commit d863bde6a9.
2024-05-20 10:03:25 +02:00
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
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 \

View File

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