Skip to content

Commit

Permalink
Correct the CMD syntax (#256)
Browse files Browse the repository at this point in the history
when we introduced the possibility to swithc ports, we added params to
the CMD.
But params must be provided as single array elements
  • Loading branch information
tuxmea authored Jan 10, 2024
1 parent c289ec7 commit d6e031b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ COPY config/hdm.yml.template $APP_HOME/config/hdm.yml

RUN bundle check || (bundle config set --local without 'development test' && bundle install)

CMD ["/hdm/bin/entry.sh ${HDM_PORT} ${HDM_HOST}"]
CMD ["/hdm/bin/entry.sh", "${HDM_PORT}", "${HDM_HOST}"]

0 comments on commit d6e031b

Please sign in to comment.