getting-started-app/Dockerfile

7 lines
112 B
Docker
Raw Normal View History

2024-12-10 13:15:24 -05:00
FROM node:18-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
EXPOSE 3000
CMD ["node","src/index.js"]