Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
FROM node:16-alpine as builder
COPY . ./
RUN npm i
EXPOSE 3000
CMD ["npm", "run", "start:dev"]