k3s/api/Dockerfile

6 lines
146 B
Docker
Raw Normal View History

FROM google/nodejs
RUN npm i -g raml2html
ADD . /data
CMD ["-i", "/data/kubernetes.raml", "-o", "/data/kubernetes.html"]
ENTRYPOINT ["raml2html"]