Skip to content

Commit

Permalink
Default BIND and PORT values as environment variables in docker (#1)
Browse files Browse the repository at this point in the history
Fix in the way the environment is defined.
  • Loading branch information
kmskpraveen authored and olger committed Jan 27, 2020
1 parent 2f922dc commit f56d1ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ RUN chown runtme:runtme /usr/local/etc/private_key.der

USER runtme

ENV BIND "0.0.0.0"
ENV BIND="0.0.0.0"

ENV PORT "8080"
ENV PORT="8080"

CMD ["sh", "-c", "oidc-token-test-service /usr/local/etc/private_key.der -p ${PORT} -b ${BIND}"]

0 comments on commit f56d1ca

Please sign in to comment.