We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5388001 commit d19fb74Copy full SHA for d19fb74
Dockerfile
@@ -0,0 +1,8 @@
1
+#node app (cadastro de produtos)
2
+
3
+FROM node:lts-alpine
4
+WORKDIR /app
5
+COPY . .
6
+RUN yarn install --production
7
+CMD ["node", "src/index.js" ]
8
+EXPOSE 3000
0 commit comments