Temp disable healthcheck

This commit is contained in:
Tuan Dang
2022-12-18 19:16:56 -05:00
parent 91052df5f9
commit c15a9301af
2 changed files with 2 additions and 6 deletions

View File

@ -8,8 +8,8 @@ RUN npm ci --only-production --ignore-scripts
COPY . .
HEALTHCHECK --interval=10s --timeout=3s --start-period=10s \
CMD node healthcheck.js
# HEALTHCHECK --interval=10s --timeout=3s --start-period=10s \
# CMD node healthcheck.js
CMD ["npm", "run", "start"]

View File

@ -27,7 +27,6 @@ router.post(
passwordController.changePassword
);
// NEW
router.post(
'/email/password-reset',
passwordLimiter,
@ -36,7 +35,6 @@ router.post(
passwordController.emailPasswordReset
);
// NEW
router.post(
'/email/password-reset-verify',
passwordLimiter,
@ -46,7 +44,6 @@ router.post(
passwordController.emailPasswordResetVerify
);
// NEW
router.get(
'/backup-private-key',
passwordLimiter,
@ -68,7 +65,6 @@ router.post(
passwordController.createBackupPrivateKey
);
// NEW
router.post(
'/password-reset',
requireSignupAuth,