5 lines
77 B
Docker
5 lines
77 B
Docker
FROM node:alpine
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm i
|
|
CMD ["npm", "run", "start"]
|