1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-15 17:51:03 +00:00
kube-arangodb/dashboard/Dockerfile.build

15 lines
265 B
Text
Raw Normal View History

2018-07-06 06:14:51 +00:00
FROM node:10.6-alpine
RUN mkdir -p /usr/code
ADD package-lock.json /usr/code/
ADD package.json /usr/code/
RUN cd /usr/code/ && npm install
VOLUME /usr/code/build
VOLUME /usr/code/public
VOLUME /usr/code/src
WORKDIR /usr/code/
CMD ["npm", "run-script", "build"]