4 lines
67 B
Docker
4 lines
67 B
Docker
FROM node:alpine
|
|
WORKDIR /
|
|
COPY . .
|
|
RUN npm install --global serve
|