Skip to content
Snippets Groups Projects
Commit 1b57760f authored by Jason Plum's avatar Jason Plum
Browse files

UBI rails, rm db.yml.examply from cp loop

Remove `config/database.yml.example` from `cp` loop of
`build:gitlab-rails-ee` UBI, as
does not exist.
parent 5a89c055
No related merge requests found
......@@ -55,7 +55,7 @@ RUN /gitlab-fetch \
&& cd ${PROJECT}-${VERSION} \
&& printf ${GITLAB_EDITION} | cut -d '-' -f 2 > REVISION \
&& printf 'gitlab-cloud-native-image' > INSTALLATION_TYPE \
&& for cfg in config/{gitlab,resque,secrets,database}.yml; do cp ${cfg}.example ${cfg} ; done \
&& for cfg in config/{gitlab,resque,secrets}.yml; do cp ${cfg}.example ${cfg} ; done \
&& cp config/database.yml.postgresql config/database.yml \
&& bundle install --deployment --without development test mysql aws kerberos --jobs $(nproc) --retry 5 \
&& yarn install --production --pure-lockfile \
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment