File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ RUN apt-get update && apt-get install -y git dos2unix
1414WORKDIR /src
1515
1616COPY . /src
17- RUN dos2unix /src/scripts/docker-link-repos.sh && sh /src/scripts/docker-link-repos.sh
17+ RUN dos2unix /src/scripts/docker-link-repos.sh && bash /src/scripts/docker-link-repos.sh
1818RUN yarn --network-timeout=100000 install
1919RUN yarn build
2020
2121# Copy the config now so that we don't create another layer in the app image
2222RUN cp /src/config.sample.json /src/webapp/config.json
2323
2424# Ensure we populate the version file
25- RUN dos2unix /src/scripts/docker-write-version.sh && sh /src/scripts/docker-write-version.sh
25+ RUN dos2unix /src/scripts/docker-write-version.sh && bash /src/scripts/docker-write-version.sh
2626
2727
2828# App
Original file line number Diff line number Diff line change 1- #! /bin/sh
1+ #! /bin/bash
22
33set -ex
44
Original file line number Diff line number Diff line change 1- #! /bin/sh
1+ #! /bin/bash
22
33set -ex
44
You can’t perform that action at this time.
0 commit comments