Skip to content

Commit 1f04e6f

Browse files
committed
update to postgres client v16
1 parent 58d2bcb commit 1f04e6f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ jobs:
8080
sudo mv jq /usr/local/bin/jq
8181
8282
- run:
83-
name: install Postgres client v15
83+
name: install Postgres client v16
8484
command: |
8585
sudo sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt jammy-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
8686
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
8787
sudo apt-get update
88-
sudo apt-get -y install postgresql-client-15
88+
sudo apt-get -y install postgresql-client-16
8989
- run: make postgres-test
9090

9191
- run:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
3636
tee /etc/apt/sources.list.d/mongodb-org-7.0.list
3737
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash -
3838
RUN apt-get -y $package_args update && \
39-
apt-get -y $package_args install mysql-client postgresql-client-15 mongodb-database-tools=100.9.0 mongodb-org-tools=7.0.7 mongodb-org-shell=7.0.7 redis-tools nodejs openssh-server bash vim-tiny && \
39+
apt-get -y $package_args install mysql-client postgresql-client-16 mongodb-database-tools=100.9.0 mongodb-org-tools=7.0.7 mongodb-org-shell=7.0.7 redis-tools nodejs openssh-server bash vim-tiny && \
4040
apt-get clean && \
4141
find /usr/share/doc/*/* ! -name copyright | xargs rm -rf && \
4242
rm -rf \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ init:
5252
.PHONY: docker-build
5353
## docker-build: builds docker image
5454
docker-build: clean
55-
docker pull ubuntu:20.04
55+
docker pull ubuntu:22.04
5656
docker build -t jamesclonk/${APP}:${COMMIT_SHA} $$PWD
5757

5858
.PHONY: docker-push

0 commit comments

Comments
 (0)