diff --git a/.github/workflows/ui-tests/Dockerfile b/.github/workflows/ui-tests/Dockerfile index 346aa7fa9..4a13be470 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.15.0@sha256:962fea580e73b931471105137d3b4e5a80bc007f57bfa8582b6f2bc3ee1a081b +FROM cypress/included:13.15.2@sha256:82ad93180a04cf0a2c455ee6472399185e8fa9b150003a5473f2c7c776e3a440 WORKDIR /e2e COPY . . diff --git a/src/accounts/accounts-db/Dockerfile b/src/accounts/accounts-db/Dockerfile index a5c1ce564..6fd915c58 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.4-alpine@sha256:d898b0b78a2627cb4ee63464a14efc9d296884f1b28c841b0ab7d7c42f1fffdf +FROM postgres:16.4-alpine@sha256:5660c2cbfea50c7a9127d17dc4e48543eedd3d7a41a595a2dfa572471e37e64c # 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 2b939d7f9..264fc32af 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.4-alpine@sha256:d898b0b78a2627cb4ee63464a14efc9d296884f1b28c841b0ab7d7c42f1fffdf +FROM postgres:16.4-alpine@sha256:5660c2cbfea50c7a9127d17dc4e48543eedd3d7a41a595a2dfa572471e37e64c # Need to get coreutils to get the date bash function working properly: RUN apk add --no-cache coreutils && rm -rf /var/cache/apk/*