mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
422 B
12 lines
422 B
FROM quay.io/brianredbeard/corebox |
|
|
|
ADD bin/dex-worker /opt/dex/bin/dex-worker |
|
ADD bin/dex-overlord /opt/dex/bin/dex-overlord |
|
ADD bin/dexctl /opt/dex/bin/dexctl |
|
|
|
ENV DEX_WORKER_HTML_ASSETS /opt/dex/html/ |
|
ADD static/html/* $DEX_WORKER_HTML_ASSETS |
|
|
|
ENV DEX_WORKER_EMAIL_TEMPLATES /opt/dex/email/ |
|
ADD static/email/* $DEX_WORKER_EMAIL_TEMPLATES |
|
ADD static/fixtures/emailer.json.sample $DEX_WORKER_EMAIL_TEMPLATES/emailer.json
|
|
|