From 6c8488364a7e253f24c2d832ea015c58c8fb8f18 Mon Sep 17 00:00:00 2001 From: Fl_GUI Date: Sat, 26 Apr 2025 13:09:46 +0200 Subject: [PATCH] put executable under /src --- Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Containerfile b/Containerfile index a0e70ad..fa072bf 100644 --- a/Containerfile +++ b/Containerfile @@ -14,6 +14,6 @@ EXPOSE 8080 VOLUME ["/app/static", "/app/templates", "/app/toml"] WORKDIR /app -COPY --from=build /go/bin/yampl /app/yampl -ENTRYPOINT ["/app/yampl", "-static", "/app/static", "-templ", "/app/templates", "-toml"] +COPY --from=build /go/bin/yampl /src/yampl +ENTRYPOINT ["/src/yampl", "-static", "/app/static", "-templ", "/app/templates", "-toml"] CMD ["project.toml"] -- 2.47.1