chore(docker): Include and use bash

pull/108/head
Robert Dailey 2 years ago
parent b42ebf39a3
commit fff66ee860

@ -9,7 +9,7 @@ ARG BUILD_FROM_BRANCH
COPY --chmod=544 ./scripts/build/*.sh .
RUN apk add unzip
RUN apk add unzip bash
RUN ./build.sh
#############################################################################
@ -25,7 +25,7 @@ ENV RECYCLARR_APP_DATA=/config \
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true
RUN set -e; \
apk add --no-cache libstdc++ tzdata; \
apk add --no-cache bash libstdc++ tzdata; \
mkdir -p "$DOTNET_BUNDLE_EXTRACT_BASE_DIR" && chmod 777 "$DOTNET_BUNDLE_EXTRACT_BASE_DIR"
COPY --chmod=555 --from=build /build/recyclarr /usr/local/bin

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -ex
git clone -b $BUILD_FROM_BRANCH "https://github.com/$REPOSITORY.git" source

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -ex
# The download path is a bit different when using the latest release instead of a specific

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -ex
# Determine the runtime from the target platform provided by Docker Buildx

@ -1,6 +1,4 @@
#!/bin/sh
set -e
#!/usr/bin/env bash
echo
echo "-------------------------------------------------------------"
echo " Executing Cron Tasks: $(date)"

@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
set -e
if [[ ! -z ${PUID+x} ]]; then

Loading…
Cancel
Save