You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# copy and install app dependencies first so that the docker cache can be used for node_modules and will only re-run `npm install` if the package files change.
COPY ./backend/package*.json ./
RUN npm install
# now copy all other src files (the .dockerignore file stops modules from being copied)