open-nomad/website/Dockerfile

9 lines
303 B
Docker
Raw Normal View History

FROM docker.mirror.hashicorp.services/node:14.17.0-alpine
2020-02-06 23:45:31 +00:00
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
2021-10-05 18:31:14 +00:00
RUN npm install -g npm@latest
2020-02-06 23:45:31 +00:00
RUN npm install