1
0
mirror of https://github.com/docker/getting-started-app.git synced 2024-12-31 18:31:15 -05:00

Dockerfile

This commit is contained in:
Anjaneyulu8106 2024-12-11 09:38:28 +05:30 committed by GitHub
parent f2d13b8483
commit 961d7d6da8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "src/index.js"]
EXPOSE 3000