Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabledManagers": ["dockerfile", "docker-compose"],
"extends": [
"config:recommended",
":disableDependencyDashboard",
"docker:pinDigests"
],
"enabledManagers": ["dockerfile", "docker-compose"],
"schedule": ["on sunday"],
"minimumReleaseAge": "21 days"
"prCreation": "not-pending",
"packageRules": [
{
"matchUpdateTypes": ["major", "minor", "patch"],
"minimumReleaseAge": "21 days"
}
]
}
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=debian:13.2-slim@sha256:e711a7b30ec1261130d0a121050b4ed81d7fb28aeabcf4ea0c7876d4e9f5aca2
ARG BASE_IMAGE=debian:13.2-slim@sha256:4bcb9db66237237d03b55b969271728dd3d955eaaa254b9db8a3db94550b1885
FROM ${BASE_IMAGE}

# Create the build image.
Expand All @@ -8,7 +8,7 @@ ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.13.0-25273"
ARG SENZING_APT_REPOSITORY_NAME="senzingrepo_2.0.1-1_all.deb"
ARG SENZING_APT_REPOSITORY_URL="https://senzing-production-apt.s3.amazonaws.com"

ENV REFRESHED_AT=2025-06-20
ENV REFRESHED_AT=2026-01-05

ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \
SENZING_APT_INSTALL_PACKAGE=${SENZING_APT_INSTALL_PACKAGE} \
Expand Down Expand Up @@ -59,4 +59,4 @@ ENV LD_LIBRARY_PATH=/opt/senzing/g2/lib
# Runtime execution.

WORKDIR /
CMD ["/bin/bash"]
CMD ["/bin/bash"]
Loading