Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
wmuldergov committed Feb 20, 2024
1 parent 4ab205a commit 4e9c640
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion compose/caching/entrypoint
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion compose/frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion compose/frontend/entrypoint
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 4e9c640

Please sign in to comment.