Files
kubevela/hack/website/Dockerfile

8 lines
155 B
Docker

FROM node:16.9.0
WORKDIR /workspace
COPY website-dev.sh /workspace
RUN git init kubevela.io
ENTRYPOINT [ "bash", "website-dev.sh" ]
CMD [ "-t", "start" ]