From 4e9c640923b811f22e82b407a7ce3f68cc594434 Mon Sep 17 00:00:00 2001 From: Mulder Date: Tue, 20 Feb 2024 15:59:24 -0800 Subject: [PATCH] test --- compose/caching/entrypoint | 2 +- compose/frontend/Dockerfile | 2 +- compose/frontend/entrypoint | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/compose/caching/entrypoint b/compose/caching/entrypoint index 96491fe43..c8e54f446 100644 --- a/compose/caching/entrypoint +++ b/compose/caching/entrypoint @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh echo "Updating the proxy_pass in the nginx config based on the DRIVEBC_IMAGE_API_BASE_URL variable in the django configmap" diff --git a/compose/frontend/Dockerfile b/compose/frontend/Dockerfile index 952783eb2..585c2c903 100644 --- a/compose/frontend/Dockerfile +++ b/compose/frontend/Dockerfile @@ -19,7 +19,7 @@ EXPOSE 3000 ARG DEBUG_BUILD=false # Add debugging tools into builds if enabled -RUN if [ $DEBUG_BUILD = true ]; then \ +RUN if [ ${DEBUG_BUILD} = true ]; then \ apt update && apt-get install -y jq vim procps less; \ fi diff --git a/compose/frontend/entrypoint b/compose/frontend/entrypoint index 3ec764019..56ffa671c 100644 --- a/compose/frontend/entrypoint +++ b/compose/frontend/entrypoint @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh MAIN=`find /usr/share/nginx/html/static/js/main.*.js` echo -e "\nwindow.BASE_MAP='${REACT_APP_BASE_MAP}';" >> $MAIN