mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
12 lines
252 B
Docker
12 lines
252 B
Docker
|
FROM ubuntu:latest AS client-id
|
||
|
#install dependencies
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install curl -y \
|
||
|
&& apt-get install jq -y
|
||
|
|
||
|
#prepare script
|
||
|
COPY build/local/clientid.sh clientid.sh
|
||
|
RUN chmod +x /clientid.sh
|
||
|
|
||
|
ENTRYPOINT [ "/clientid.sh" ]
|