mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-06 17:37:09 +00:00
8 lines
154 B
Docker
8 lines
154 B
Docker
FROM node:14.17
|
|
WORKDIR /workspace
|
|
COPY website-dev.sh /workspace
|
|
|
|
RUN git init kubevela.io
|
|
|
|
ENTRYPOINT [ "bash", "website-dev.sh" ]
|
|
CMD [ "-t", "start" ] |