Files
kubevela/hack/website/Dockerfile
2021-05-18 17:23:46 +08:00

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" ]