Skip to content

Commit

Permalink
fix: add copy command in dockerfile for mocks schema
Browse files Browse the repository at this point in the history
  • Loading branch information
dleard committed Nov 12, 2020
1 parent 2f77a87 commit 918f5d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion helm/cas-ciip-portal/templates/cron-deploy-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ spec:
set -euo pipefail;
data/deploy-data.sh --oc-project=$(NAMESPACE);
if {{ .Values.env.enableDbMocks }}; then
pushd "../mocks_schema";
pushd ../mocks_schema;
sqitch deploy;
popd;
fi;
1 change: 1 addition & 0 deletions schema/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ ENV USER_ID=1001
ENV CIIP_HOME=/root
ENV HOME=/root
COPY schema/ ${HOME}/
COPY mocks_schema/ ${HOME}/mocks_schema/
WORKDIR ${HOME}

# jq is used by trigger-airflow-dag.sh
Expand Down

0 comments on commit 918f5d7

Please sign in to comment.