538aa90d92
Dockerhub is going to rate limit unauthenticated pulls. Use our HashiCorp internal mirror for builds run through CircleCI. Co-authored-by: Mahmood Ali <mahmood@hashicorp.com>
8 lines
273 B
Docker
8 lines
273 B
Docker
FROM docker.mirror.hashicorp.services/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
|