mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-05-19 13:26:37 +00:00

- Bumped NodeJS version to 10 (container was building but not running any of the examples with the other version)
15 lines
224 B
Docker
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
|