getting-started-app/Dockerfile

7 lines
100 B
Docker
Raw Normal View History

2024-12-10 23:45:24 +05:30
FROM node:18-alpine
WORKDIR /app
COPY . .
2024-12-10 23:52:38 +05:30
RUN yarn install
2024-12-10 23:45:24 +05:30
EXPOSE 3000
CMD ["node","src/index.js"]