1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-06-16 17:43:16 +02:00
docs/Dockerfile
2018-11-10 14:47:09 +01:00

18 lines
319 B
Docker

FROM node:alpine
RUN apk update && \
apk add --update --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing \
g++ \
git \
make \
bash \
python \
&& rm -rf /var/cache/apk/*
RUN mkdir -p /docs
WORKDIR /docs
COPY package.json .
RUN npm install && npm cache clean --force