6 lines
80 B
Docker
6 lines
80 B
Docker
FROM node:10-alpine
|
|
WORKDIR /data
|
|
COPY . .
|
|
RUN npm install
|
|
CMD ["npm", "start"]
|