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
2 changes: 1 addition & 1 deletion charts/recruit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ waitForPostgresInitContainer:
image: # +doc-gen:ignore
registry: docker.io
repository: library/postgres
tag: 18.0@sha256:1ffc019dae94eca6b09a49ca67d37398951346de3c3d0cfe23d8d4ca33da83fb
tag: 18.0@sha256:41fc5342eefba6cc2ccda736aaf034bbbb7c3df0fdb81516eba1ba33f360162c
pullPolicy: IfNotPresent

# container security context applied to init containers used by the query, list, and notify modules.
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/docker-compose.staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ services:
- "traefik.http.routers.fhir.entrypoints=web"

fhir-db:
image: docker.io/library/postgres:18.0@sha256:1ffc019dae94eca6b09a49ca67d37398951346de3c3d0cfe23d8d4ca33da83fb
image: docker.io/library/postgres:18.0@sha256:41fc5342eefba6cc2ccda736aaf034bbbb7c3df0fdb81516eba1ba33f360162c
restart: unless-stopped
deploy:
resources:
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
gradle jacocoTestReport
EOF

FROM gcr.io/distroless/java21-debian12:nonroot@sha256:5d281651dbf431f0fa9bc28bce5514a5594d66ccd2f9bf8602adccfc2518d4f9
FROM gcr.io/distroless/java21-debian12:nonroot@sha256:2491db610eb845917845285aa7bac120aa8a16d85435d03c8452d5ab24c1bf79
WORKDIR /app

ARG MODULE_NAME=query
Expand Down
6 changes: 3 additions & 3 deletions src/hack/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ services:
- "traefik.http.routers.fhir.entrypoints=web"

fhir-db:
image: docker.io/library/postgres:18.0@sha256:1ffc019dae94eca6b09a49ca67d37398951346de3c3d0cfe23d8d4ca33da83fb
image: docker.io/library/postgres:18.0@sha256:41fc5342eefba6cc2ccda736aaf034bbbb7c3df0fdb81516eba1ba33f360162c
restart: unless-stopped
deploy:
resources:
Expand Down Expand Up @@ -339,7 +339,7 @@ services:
- "traefik.http.routers.maildev.entrypoints=web"

notify-ha-db:
image: docker.io/library/postgres:18.0@sha256:1ffc019dae94eca6b09a49ca67d37398951346de3c3d0cfe23d8d4ca33da83fb
image: docker.io/library/postgres:18.0@sha256:41fc5342eefba6cc2ccda736aaf034bbbb7c3df0fdb81516eba1ba33f360162c
restart: unless-stopped
deploy:
resources:
Expand Down Expand Up @@ -619,7 +619,7 @@ services:
condition: service_started

metastore-db:
image: docker.io/library/postgres:18.0@sha256:1ffc019dae94eca6b09a49ca67d37398951346de3c3d0cfe23d8d4ca33da83fb
image: docker.io/library/postgres:18.0@sha256:41fc5342eefba6cc2ccda736aaf034bbbb7c3df0fdb81516eba1ba33f360162c
profiles:
- trino
ipc: private
Expand Down
2 changes: 1 addition & 1 deletion src/list/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
RUN npm clean-install --workspace=server
COPY server/*.js ./server/

FROM gcr.io/distroless/nodejs22-debian12:nonroot@sha256:1014312994b734e9f3bba23bb96fab389119750a98f14bc76936dc2a7e72c3da
FROM gcr.io/distroless/nodejs22-debian12:nonroot@sha256:9187fd451b5e2d258d691cb7da51020bfc8f557cc4a58e80b38f3f30bbbc37f9

Check notice

Code scanning / KICS (MegaLinter REPOSITORY_KICS)

Healthcheck Instruction Missing Note

Dockerfile doesn't contain instruction 'HEALTHCHECK'
WORKDIR /app
USER 65532:65532
# Port 8081 is currently not used, but exposed to make
Expand Down
2 changes: 1 addition & 1 deletion src/notify/tests/e2e/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ services:
- maildev

jobstore-db:
image: docker.io/library/postgres:18.0@sha256:1ffc019dae94eca6b09a49ca67d37398951346de3c3d0cfe23d8d4ca33da83fb
image: docker.io/library/postgres:18.0@sha256:41fc5342eefba6cc2ccda736aaf034bbbb7c3df0fdb81516eba1ba33f360162c
environment:
# kics-scan ignore-line
POSTGRES_PASSWORD: postgres # pragma: allowlist secret
Expand Down
Loading