mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
a6e4b537fe
* chore(contributing): add startup * init * cleanup docker file * local * compose works * markdowns * add gateway start on readme * readme done * finish mds * rename/delete compose files * correct docker compose file name * fix links, update contribute, split build/readme into separate files in /guides, add zitadel startup * fix(docker compose): allow .keys folder to not exist * update md's * use docker-compose instead of docker compose as --profile gets ignored * write a message if create key * copy openapi statik.go * explain how to connect in quickstart * Apply suggestions from code review Co-authored-by: Livio Amstutz <livio.a@gmail.com> * sremove subscription service from env.json * Delete caos_local.sh moved to build/local/local.env Co-authored-by: Livio Amstutz <livio.a@gmail.com>
7 lines
173 B
Docker
7 lines
173 B
Docker
FROM alpine:latest AS gen-keys
|
|
COPY build/local/keys.sh keys.sh
|
|
RUN chmod +x /keys.sh
|
|
ENTRYPOINT [ "/keys.sh" ]
|
|
|
|
FROM scratch AS copy-keys
|
|
COPY --from=gen-keys /.keys /.keys |