7 lines
68 B
Docker
7 lines
68 B
Docker
FROM node
|
|
|
|
COPY . .
|
|
RUN npm install
|
|
|
|
EXPOSE 3000
|
|
CMD npm run start
|