orbitdb/docker/Dockerfile
Sebastiaan baef31629c Bumped NodeJS version
- Bumped NodeJS version to 10 (container was building but not running any of the examples with the other version)
2019-05-15 12:23:04 +02:00

15 lines
224 B
Docker

FROM node:10
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
WORKDIR /home/node
USER node
COPY package.json ./
COPY examples/ ./examples
COPY src/ ./src
COPY conf/ ./conf
RUN npm install babel-cli webpack \
&& npm install