Javascript – Docker – dist file disappeared after running docker-compose up -d
I have a nestJS application using Dockerfile to build backend/Dockerfile FROM node:18-alpine # Reuse the old commits if dependencies are not changed ADD package.json /tmp/package.json RUN cd /tmp && npm install RUN mkdir -p /app && cp -a /tmp/node_modules /app…