Untitled

 avatar
unknown
plain_text
2 years ago
119 B
4
Indexable
FROM node:latest
WORKDIR /app
copy package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["node", "app.js"]
Editor is loading...
Leave a Comment