FROM node:17
WORKDIR /app/dealerapp-gateway
COPY package.json .
RUN npm install
COPY . ./
EXPOSE 8080
CMD ["npm", "run", "start"]