File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 11# --- Stage 1: Dependencies ---
2- FROM node:24-bookworm-slim AS deps
2+ FROM node:24-bookworm-slim@sha256:b83af04d005d8e3716f542469a28ad2947ba382f6b4a76ddca0827a21446a540 AS deps
33WORKDIR /app
44
55RUN apt-get update && apt-get install -y --no-install-recommends openssl ca-certificates
@@ -8,7 +8,7 @@ COPY package*.json ./
88RUN npm ci
99
1010# --- Stage 2: Builder ---
11- FROM node:24-bookworm-slim AS builder
11+ FROM node:24-bookworm-slim@sha256:b83af04d005d8e3716f542469a28ad2947ba382f6b4a76ddca0827a21446a540 AS builder
1212WORKDIR /app
1313COPY --from=deps /app/node_modules ./node_modules
1414COPY . .
@@ -19,7 +19,7 @@ ENV NEXT_TELEMETRY_DISABLED=1
1919RUN npm run build
2020
2121# --- Stage 3: Runner (Distroless Nonroot) ---
22- FROM gcr.io/distroless/nodejs24-debian13:nonroot AS runner
22+ FROM gcr.io/distroless/nodejs24-debian13:nonroot@sha256:210c30b4c1b0623fe951ca9aa1048ba6b9221f8204770e39787b4caef48f42ad AS runner
2323
2424WORKDIR /app
2525
Original file line number Diff line number Diff line change 1- FROM node:24-alpine
1+ FROM node:24-alpine@sha256:c921b97d4b74f51744057454b306b418cf693865e73b8100559189605f6955b8
22WORKDIR /app
33COPY package*.json ./
44RUN npm install
Original file line number Diff line number Diff line change 11services :
22 db :
3- image : postgres:18-alpine
3+ image : postgres:18-alpine@sha256:b40d931bd0e7ce6eecc59a5a6ac3b3c04a01e559750e73e7086b6dbd7f8bf545
44 restart : unless-stopped
55 env_file :
66 - .env
@@ -15,7 +15,7 @@ services:
1515 retries : 5
1616
1717 minio :
18- image : minio/minio:RELEASE.2025-06-13T11-33-47Z
18+ image : minio/minio:RELEASE.2025-06-13T11-33-47Z@sha256:064117214caceaa8d8a90ef7caa58f2b2aeb316b5156afe9ee8da5b4d83e12c8
1919 restart : unless-stopped
2020 env_file :
2121 - .env
@@ -51,7 +51,7 @@ services:
5151 start_period : 10s
5252
5353 redis :
54- image : redis:8-alpine
54+ image : redis:8-alpine@sha256:6cbef353e480a8a6e7f10ec545f13d7d3fa85a212cdcc5ffaf5a1c818b9d3798
5555 restart : unless-stopped
5656 healthcheck :
5757 test : ["CMD", "redis-cli", "ping"]
Original file line number Diff line number Diff line change 1- FROM python:3.11 -slim-bookworm
1+ FROM python:3.14 -slim-bookworm@sha256:e8a1ad81a9fef9dc56372fb49b50818cac71f5fae238b21d7738d73ccae8f803
22
33WORKDIR /app
44
You can’t perform that action at this time.
0 commit comments