From ecfabafcaa4f6f1983be8996209aa1a05a2d3ac3 Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Fri, 28 Mar 2025 08:26:11 -0400 Subject: [PATCH] Dockerfile-workers: don't apt-get redis-server Nothing from the apt-installed redis-server ends up getting copied into the runtime image (only the redis docker image is used instead), so skip installing it. --- docker/Dockerfile-workers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile-workers b/docker/Dockerfile-workers index 5198318786..c4e7ec1c64 100644 --- a/docker/Dockerfile-workers +++ b/docker/Dockerfile-workers @@ -19,7 +19,7 @@ FROM ghcr.io/astral-sh/uv:python${PYTHON_VERSION}-${DEBIAN_VERSION} AS deps_base --mount=type=cache,target=/var/lib/apt,sharing=locked \ apt-get update -qq && \ DEBIAN_FRONTEND=noninteractive apt-get install -yqq --no-install-recommends \ - redis-server nginx-light + nginx-light # --link-mode=copy silences a warning as uv isn't able to do hardlinks between its cache # (mounted as --mount=type=cache) and the target directory.