mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 07:05:15 +00:00
13 lines
164 B
Plaintext
13 lines
164 B
Plaintext
FROM node:15 as builder
|
|
|
|
COPY site/ /site/
|
|
|
|
WORKDIR /site
|
|
|
|
RUN npm install
|
|
|
|
RUN npm run export
|
|
|
|
FROM scratch as final
|
|
|
|
COPY --from=builder /site/__sapper__/export . |