mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
13 lines
176 B
Plaintext
13 lines
176 B
Plaintext
|
FROM node:15 as builder
|
||
|
|
||
|
COPY site/ /site/
|
||
|
|
||
|
WORKDIR /site
|
||
|
|
||
|
RUN npm install
|
||
|
|
||
|
RUN npx sapper export --legacy
|
||
|
|
||
|
FROM scratch as final
|
||
|
|
||
|
COPY --from=builder /site/__sapper__/export .
|