8 lines
140 B
Docker
8 lines
140 B
Docker
FROM nginx:stable-alpine
|
|
|
|
RUN apk add --update nodejs nodejs-npm
|
|
|
|
COPY . /usr/share/nginx/html
|
|
|
|
RUN cd /usr/share/nginx/html && npm install
|