6 lines
68 B
Docker
6 lines
68 B
Docker
FROM node:alpine
|
|
EXPOSE 4000
|
|
COPY . .
|
|
RUN npm install
|
|
CMD npm start
|