9 lines
No EOL
69 B
Text
9 lines
No EOL
69 B
Text
FROM node:alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . /app
|
|
|
|
RUN npm i
|
|
|
|
CMD npm start |