John Costa
875a84e301
fix(docker): copy the app with node ownership instead of a second chown layer ( #14010 )
...
The runner-base stage COPY'd the standalone build as root and then ran
`RUN chown -R node:node /app`. On overlayfs a chown rewrites every file it
touches into the new layer, so the published image carried the ~2 GB
standalone tree twice (docker history of diegosouzapw/omniroute:latest:
`COPY /app/.build/next/standalone ./` 2.03 GB followed by
`RUN chown -R node:node /app` 2.04 GB).
Set `--chown=node:node` on the three COPYs that populate /app, drop the
recursive chown, and hand /app and /app/data to node non-recursively next to
the `mkdir -p /app/data` so the data dir stays writable without a volume.
Measured by rebuilding the runner-base COPY/chown sequence against the
published /app tree (root-owned source, same base image, linux/arm64):
before: 4.38 GB of layers (COPY 2.04 GB + chown -R 2.04 GB), inspect Size 1220846106
after: 2.34 GB of layers (COPY --chown 2.04 GB), inspect Size 655117142
The fixed image runs as uid 1000, /app and /app/data are node-owned and
writable, the server boots and healthcheck.mjs exits 0. hadolint output is
unchanged. tests/unit/dockerfile-copy-chown-13990.test.ts guards the
mechanism.
Fixes #13990
Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com >
2026-09-18 11:35:05 -03:00
..
2026-07-13 09:12:40 -03:00
2026-09-15 13:25:13 -03:00
2026-09-18 07:09:03 -03:00
2026-09-15 16:58:24 -03:00
2026-09-18 11:29:23 -03:00
2026-09-16 19:59:43 -03:00
2026-09-17 15:35:35 -03:00
2026-09-18 11:28:03 -03:00
2026-09-18 11:28:20 -03:00
2026-09-16 06:08:58 -03:00
2026-09-16 08:23:17 -03:00
2026-09-16 06:17:57 -03:00
2026-09-18 11:28:36 -03:00
2026-09-18 11:28:52 -03:00
2026-09-17 16:27:19 -03:00
2026-09-17 13:16:02 -03:00
2026-09-17 16:26:25 -03:00
2026-09-17 16:24:58 -03:00
2026-09-16 06:18:37 -03:00
2026-09-16 06:18:37 -03:00
2026-09-18 11:29:08 -03:00
2026-09-16 15:34:54 -03:00
2026-09-17 16:24:39 -03:00
2026-09-15 09:00:51 -03:00
2026-09-15 09:00:51 -03:00
2026-09-17 18:37:51 -03:00
2026-09-17 18:38:26 -03:00
2026-09-18 10:21:32 -03:00
2026-09-18 11:29:38 -03:00
2026-09-17 16:26:08 -03:00
2026-09-17 18:37:34 -03:00
2026-09-17 16:25:16 -03:00
2026-09-17 02:30:54 -03:00
2026-09-17 02:30:35 -03:00
2026-09-17 12:56:30 -03:00
2026-09-17 12:56:30 -03:00
2026-09-17 12:56:30 -03:00
2026-09-17 12:56:30 -03:00
2026-09-17 02:30:15 -03:00
2026-09-17 02:30:15 -03:00
2026-09-17 02:29:39 -03:00
2026-09-17 02:29:19 -03:00
2026-09-17 10:56:01 -03:00
2026-09-17 10:44:48 -03:00
2026-09-16 06:18:22 -03:00
2026-09-17 10:46:52 -03:00
2026-09-17 16:25:49 -03:00
2026-09-17 16:25:32 -03:00
2026-09-16 06:17:42 -03:00
2026-09-16 06:16:49 -03:00
2026-09-18 11:29:54 -03:00
2026-09-16 13:37:07 -03:00
2026-09-17 10:46:34 -03:00
2026-09-16 15:45:34 -03:00
2026-09-16 06:17:27 -03:00
2026-09-16 06:17:04 -03:00
2026-09-16 06:16:34 -03:00
2026-09-18 11:30:09 -03:00
2026-09-16 13:37:39 -03:00
2026-09-16 13:36:52 -03:00
2026-09-16 06:16:02 -03:00
2026-09-16 06:16:18 -03:00
2026-09-17 13:22:09 -03:00
2026-09-17 18:52:43 -03:00
2026-09-15 16:49:06 -03:00
2026-09-17 16:24:04 -03:00
2026-09-18 11:30:35 -03:00
2026-09-15 10:59:34 -03:00
2026-09-15 13:21:52 -03:00
2026-09-18 11:30:45 -03:00
2026-09-16 06:15:47 -03:00
2026-09-15 11:24:35 -03:00
2026-09-15 13:08:21 -03:00
2026-09-15 11:26:38 -03:00
2026-09-17 02:31:53 -03:00
2026-09-18 11:30:53 -03:00
2026-09-18 11:31:02 -03:00
2026-09-16 16:50:42 -03:00
2026-09-16 06:15:31 -03:00
2026-09-16 06:15:15 -03:00
2026-09-16 21:01:48 -03:00
2026-09-16 21:02:04 -03:00
2026-09-16 21:02:19 -03:00
2026-09-16 21:02:35 -03:00
2026-09-16 21:02:51 -03:00
2026-09-16 21:09:38 -03:00
2026-09-16 21:03:09 -03:00
2026-09-16 21:03:25 -03:00
2026-09-16 21:03:40 -03:00
2026-09-16 21:03:57 -03:00
2026-09-16 13:39:29 -03:00
2026-09-16 15:32:58 -03:00
2026-09-16 06:15:00 -03:00
2026-09-16 06:14:31 -03:00
2026-09-17 13:06:37 -03:00
2026-09-16 06:14:46 -03:00
2026-09-16 22:56:38 -03:00
2026-09-17 12:32:43 -03:00
2026-09-16 06:13:44 -03:00
2026-09-16 06:14:14 -03:00
2026-09-16 06:13:59 -03:00
2026-09-16 16:56:28 -03:00
2026-09-15 12:52:41 -03:00
2026-09-15 11:21:58 -03:00
2026-09-15 15:46:57 -03:00
2026-09-15 15:02:55 -03:00
2026-09-15 12:20:19 -03:00
2026-09-16 06:12:28 -03:00
2026-09-17 10:45:25 -03:00
2026-09-16 06:12:59 -03:00
2026-09-15 11:08:16 -03:00
2026-09-16 06:13:29 -03:00
2026-09-15 20:10:57 -03:00
2026-09-16 06:13:14 -03:00
2026-09-15 20:39:39 -03:00
2026-09-16 06:12:43 -03:00
2026-09-17 10:46:00 -03:00
2026-09-16 06:11:13 -03:00
2026-09-18 11:31:43 -03:00
2026-09-16 17:01:51 -03:00
2026-09-16 06:12:12 -03:00
2026-09-16 06:11:56 -03:00
2026-09-18 11:31:52 -03:00
2026-09-18 11:31:52 -03:00
2026-09-16 13:38:56 -03:00
2026-09-15 11:05:01 -03:00
2026-09-15 10:04:14 -03:00
2026-09-16 06:11:41 -03:00
2026-09-16 06:11:27 -03:00
2026-09-16 06:10:13 -03:00
2026-09-15 21:35:03 -03:00
2026-09-15 12:59:27 -03:00
2026-09-15 11:18:10 -03:00
2026-09-15 11:15:24 -03:00
2026-09-15 20:01:25 -03:00
2026-09-15 21:19:47 -03:00
2026-09-15 10:11:44 -03:00
2026-09-15 11:12:03 -03:00
2026-09-15 15:52:33 -03:00
2026-09-15 20:58:12 -03:00
2026-09-16 15:15:16 -03:00
2026-09-16 06:10:28 -03:00
2026-09-18 11:32:01 -03:00
2026-09-16 13:39:14 -03:00
2026-09-16 08:15:21 -03:00
2026-09-15 16:10:52 -03:00
2026-09-15 08:51:45 -03:00
2026-09-16 10:10:32 -03:00
2026-09-15 12:48:06 -03:00
2026-09-15 13:57:39 -03:00
2026-09-15 14:10:45 -03:00
2026-09-15 16:19:10 -03:00
2026-09-16 06:09:58 -03:00
2026-09-15 22:01:56 -03:00
2026-09-15 15:07:42 -03:00
2026-09-15 15:25:43 -03:00
2026-09-16 06:09:44 -03:00
2026-09-17 10:45:43 -03:00
2026-09-16 06:10:58 -03:00
2026-09-17 10:45:07 -03:00
2026-09-16 06:09:29 -03:00
2026-09-16 06:09:15 -03:00
2026-09-16 06:10:43 -03:00
2026-09-18 11:32:37 -03:00
2026-09-15 16:22:51 -03:00
2026-09-18 11:32:10 -03:00
2026-09-16 12:59:45 -03:00
2026-09-17 18:52:59 -03:00
2026-09-18 11:32:26 -03:00
2026-09-18 11:32:26 -03:00
2026-09-18 11:32:56 -03:00
2026-09-15 23:19:43 -03:00
2026-09-16 13:35:33 -03:00
2026-09-16 13:35:49 -03:00
2026-09-18 11:34:21 -03:00
2026-09-17 17:06:41 -03:00
2026-09-16 12:19:40 -03:00
2026-09-16 12:27:59 -03:00
2026-09-17 02:55:31 -03:00
2026-09-17 09:09:02 -03:00
2026-09-18 11:34:47 -03:00
2026-09-18 11:34:56 -03:00
2026-09-18 11:35:05 -03:00
2026-09-17 02:32:10 -03:00
2026-09-16 08:01:39 -03:00
2026-09-18 10:21:17 -03:00
2026-09-16 19:59:58 -03:00
2026-09-17 16:26:42 -03:00
2026-09-16 13:48:13 -03:00
2026-09-16 11:45:40 -03:00
2026-09-16 23:10:24 -03:00
2026-09-17 16:27:01 -03:00
2026-09-16 19:59:25 -03:00
2026-09-18 10:21:44 -03:00
2026-09-17 02:31:36 -03:00
2026-09-15 13:24:50 -03:00
2026-09-15 13:25:35 -03:00
2026-09-15 13:24:30 -03:00
2026-09-17 18:47:25 -03:00
2026-09-15 08:50:58 -03:00
2026-09-18 11:31:27 -03:00
2026-09-18 10:21:59 -03:00
2026-09-18 11:28:45 -03:00
2026-09-15 13:24:09 -03:00
2026-09-18 11:33:22 -03:00
2026-09-18 11:34:39 -03:00
2026-09-18 11:30:01 -03:00
2026-09-16 23:57:14 -03:00
2026-09-16 16:37:41 -03:00
2026-09-18 10:21:03 -03:00