From f16da888d5c5c66a3c49a18a55dd6fb977a6f99e Mon Sep 17 00:00:00 2001 From: jakubmanczak Date: Fri, 3 Apr 2026 14:59:54 +0200 Subject: [PATCH] don't mount nonexistent ./web/ --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c5fa336..4db5d72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,6 @@ RUN apk add --no-cache clang lld musl-dev git # source code into the container. Once built, copy the executable to an # output directory before the cache mounted /app/target is unmounted. RUN --mount=type=bind,source=src,target=src \ - --mount=type=bind,source=web,target=web \ --mount=type=bind,source=Cargo.toml,target=Cargo.toml \ --mount=type=bind,source=Cargo.lock,target=Cargo.lock \ --mount=type=cache,target=/app/target/ \