From 335b53e4a00c56dc7e92cec33ebccb0b86aa8065 Mon Sep 17 00:00:00 2001 From: Fuchsty Date: Fri, 25 Aug 2023 14:47:13 +0200 Subject: [PATCH] bump pg to 8.0.1 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a4922bc..ccf4d18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY --chown=node:node . . RUN npm install && \ npm install redis@0.8.1 && \ - npm install pg@4.5.7 && \ + npm install pg@8.0.1 && \ npm install memcached@2.2.2 && \ npm install aws-sdk@2.814.0 && \ npm install rethinkdbdash@2.3.31 @@ -61,8 +61,8 @@ ENTRYPOINT [ "bash", "docker-entrypoint.sh" ] HEALTHCHECK --interval=30s --timeout=30s --start-period=5s \ --retries=3 CMD [ "sh", "-c", "echo -n 'curl localhost:7777... '; \ (\ - curl -sf localhost:7777 > /dev/null\ + curl -sf localhost:7777 > /dev/null\ ) && echo OK || (\ - echo Fail && exit 2\ + echo Fail && exit 2\ )"] CMD ["npm", "start"]