7 lines
72 B
Docker
7 lines
72 B
Docker
FROM node:slim
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN npm i
|
|
|
|
CMD ["npm", "start"] |