From 261d738b5bdf730202246e87d0f26d1402c57572 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Tue, 30 Jan 2024 00:09:24 +0100 Subject: [PATCH] chore(deps): update docker (#2000) --- .github/workflows/ui-tests/Dockerfile | 2 +- src/accounts/accounts-db/Dockerfile | 2 +- src/ledger/ledger-db/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ui-tests/Dockerfile b/.github/workflows/ui-tests/Dockerfile index cf44b1068..d7efc6a20 100644 --- a/.github/workflows/ui-tests/Dockerfile +++ b/.github/workflows/ui-tests/Dockerfile @@ -9,7 +9,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM cypress/included:13.6.3@sha256:1f342d0c61828a4389d7cd8742a9f704f87ef273c7304de7483f4590f90b5519 +FROM cypress/included:13.6.3@sha256:29358c0f7ddc80f808305a524cd12bc3baaa6119ace9e9f642e1d5a8442b37f7 WORKDIR /e2e COPY . . diff --git a/src/accounts/accounts-db/Dockerfile b/src/accounts/accounts-db/Dockerfile index d2e004bf1..f2031dc65 100644 --- a/src/accounts/accounts-db/Dockerfile +++ b/src/accounts/accounts-db/Dockerfile @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM postgres:16.1-alpine@sha256:884718395ee967fc70374563f3b4d72f0c61f48f81868decb9fa452915fe070e +FROM postgres:16.1-alpine@sha256:b1413d8f37470f1fb355ea833d91855d6e24929e8f4336984c5be0de62947a25 # Files for initializing the database. COPY initdb/0-accounts-schema.sql initdb/1-load-testdata.sh /docker-entrypoint-initdb.d/ diff --git a/src/ledger/ledger-db/Dockerfile b/src/ledger/ledger-db/Dockerfile index 17744553d..dfa816017 100644 --- a/src/ledger/ledger-db/Dockerfile +++ b/src/ledger/ledger-db/Dockerfile @@ -11,7 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. -FROM postgres:16.1-alpine@sha256:884718395ee967fc70374563f3b4d72f0c61f48f81868decb9fa452915fe070e +FROM postgres:16.1-alpine@sha256:b1413d8f37470f1fb355ea833d91855d6e24929e8f4336984c5be0de62947a25 # Need to get coreutils to get the date bash function working properly: RUN apk add --no-cache coreutils && rm -rf /var/cache/apk/*