Set NODE_TLS_REJECT_UNAUTHORIZED to 0

This commit is contained in:
Douglas Barone 2023-10-23 13:51:10 -04:00
parent f8dda817e8
commit 27210f5686

View File

@ -18,11 +18,10 @@ COPY . .
RUN npm run build RUN npm run build
# Set environment variables # Set environment variables
ENV NODE_TLS_REJECT_UNAUTHORIZED=0
ENV PORT=80 ENV PORT=80
EXPOSE 80 EXPOSE 80
CMD [ "npm", "start" ] CMD [ "npm", "start" ]