7 lines
84 B
Docker
7 lines
84 B
Docker
FROM node:11-alpine
|
|
|
|
RUN apk add yarn
|
|
RUN npm install ejs -g
|
|
|
|
WORKDIR /var/www/app
|