Install pg_dump on docker

This commit is contained in:
Adria Navarro 2023-06-21 11:33:37 +01:00
parent bedddc15aa
commit 921c821d2f
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FROM node:14-slim as build FROM node:14-slim as build
# install node-gyp dependencies # 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 # add pin script
WORKDIR / WORKDIR /

View File

@ -18,7 +18,7 @@ ENV TOP_LEVEL_PATH=/
# handle node-gyp # handle node-gyp
RUN apt-get update \ 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 RUN yarn global add pm2
# Install client for oracle datasource # Install client for oracle datasource