mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
11 lines
160 B
Plaintext
11 lines
160 B
Plaintext
|
# FROM sratch
|
||
|
FROM alpine:latest
|
||
|
|
||
|
RUN addgroup -S zitadel && adduser -S zitadel -G zitadel
|
||
|
|
||
|
USER zitadel
|
||
|
|
||
|
COPY .build/angular /app/console
|
||
|
COPY .build/go /app
|
||
|
|