df34412570
* new documentation website * ci job adjustment * update to latest version on downloads page * remove transition-period scripts * add netlify toml file * fix docs patch * fix ci config? * revert go.mod changes * a couple last markdown formatting fixes
8 lines
240 B
Docker
8 lines
240 B
Docker
FROM node:10.16.3-alpine
|
|
RUN apk add --update --no-cache git make g++ automake autoconf libtool nasm libpng-dev
|
|
|
|
COPY ./package.json /website/package.json
|
|
COPY ./package-lock.json /website/package-lock.json
|
|
WORKDIR /website
|
|
RUN npm install
|