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
# First, we copy just the needed files to do `npm install`. This way our build will not reinstall node modules if we just have changes to our source files
COPY . /app
RUN npm i --engine-strict=true --progress=false --loglevel="error" \
&& npm cache clean --force
# We add an environmental variable that the app looks for to start the app with default url
ENV NODE_ENV=production
# Define the command to run your app using `CMD` which defines your runtime.