5 lines
89 B
Docker
5 lines
89 B
Docker
FROM node:alpine
|
|
WORKDIR /
|
|
COPY . .
|
|
RUN npm install --global serve
|
|
CMD ["serve", "/app"]
|