From 330a80c8b5967f87360e5e71f2c6cb9a6729b3f0 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Sun, 12 Jan 2025 17:20:25 -0500 Subject: [PATCH] Fix loading the PGP WKD and AST explorer into the homepage image. --- docker/server/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/server/Dockerfile b/docker/server/Dockerfile index dfa06ca..0be90da 100644 --- a/docker/server/Dockerfile +++ b/docker/server/Dockerfile @@ -49,8 +49,8 @@ RUN --mount=type=tmpfs,target=/tmp --mount=type=cache,target=/usr/local/cargo/re FROM alpine:$ALPINE_VERSION AS natter COPY --link --from=natter-build /target/release-lto/natter /usr/bin/ COPY --link . /source -COPY --link --from=private /homepage_private/static/* /source/static/ -COPY --link --from=explorer-build /organic_ast_explorer/dist/* /source/static/organic/ast_explorer/ +COPY --link --from=private /homepage_private/static /source/static/ +COPY --link --from=explorer-build /organic_ast_explorer/dist /source/static/organic/ast_explorer/ RUN --network=none --mount=type=tmpfs,target=/tmp natter build --config /source/natter.toml