The docker file configuration is ```FROM node:late...
# orm-help
a
The docker file configuration is
Copy code
FROM node:latest as build
	# set the working direction
	WORKDIR /app
	

	# add `/app/node_modules/.bin` to $PATH
	ENV PATH /app/node_modules/.bin:$PATH


	# install app dependencies
	COPY package.json ./
	COPY package-lock.json ./
	COPY . ./
	RUN npm install
	RUN npx prisma generate
	CMD "npm" "start"