From 921c821d2f3da4d8c7ea2de94450c4f9f4601cff Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Wed, 21 Jun 2023 11:33:37 +0100 Subject: [PATCH] Install pg_dump on docker --- hosting/single/Dockerfile | 2 +- packages/server/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosting/single/Dockerfile b/hosting/single/Dockerfile index 56df8185a9..3ffba17cef 100644 --- a/hosting/single/Dockerfile +++ b/hosting/single/Dockerfile @@ -1,7 +1,7 @@ FROM node:14-slim as build # install node-gyp dependencies -RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python +RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends apt-utils cron g++ make python postgresql-client # add pin script WORKDIR / diff --git a/packages/server/Dockerfile b/packages/server/Dockerfile index 223b96a2ab..77aaf87c13 100644 --- a/packages/server/Dockerfile +++ b/packages/server/Dockerfile @@ -18,7 +18,7 @@ ENV TOP_LEVEL_PATH=/ # handle node-gyp RUN apt-get update \ - && apt-get install -y --no-install-recommends g++ make python + && apt-get install -y --no-install-recommends g++ make python postgresql-client RUN yarn global add pm2 # Install client for oracle datasource