diff --git a/tools/k2d/Dockerfile.template b/tools/k2d/Dockerfile.template index 821e69b0e8..c530ddace7 100644 --- a/tools/k2d/Dockerfile.template +++ b/tools/k2d/Dockerfile.template @@ -8,8 +8,8 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \ /etc/profile.d/ \ /etc/profile.d/ SHELL [ "bash", "-clo", "errexit" ] -COPY --link --from=go / / -COPY --link --from=make / / +COPY --link --from=go / /usr/local/ +COPY --link --from=make / /usr/local/ WORKDIR /go/src/github.com/portainer/k2d ARG name ARG version diff --git a/tools/keybase/Dockerfile.template b/tools/keybase/Dockerfile.template index 5c448dc61a..c1cda725ca 100644 --- a/tools/keybase/Dockerfile.template +++ b/tools/keybase/Dockerfile.template @@ -12,7 +12,7 @@ apt-get update apt-get -y install --no-install-recommends \ build-essential EOF -COPY --link --from=go / / +COPY --link --from=go / /usr/local/ WORKDIR /go/src/github.com/keybase/client ARG name ARG version diff --git a/tools/keyoxide/Dockerfile.template b/tools/keyoxide/Dockerfile.template index 1a05d8f866..7d1f3976d4 100644 --- a/tools/keyoxide/Dockerfile.template +++ b/tools/keyoxide/Dockerfile.template @@ -8,9 +8,9 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \ /etc/profile.d/ \ /etc/profile.d/ SHELL [ "bash", "-clo", "errexit" ] -COPY --link --from=nodejs / / -COPY --link --from=npm / / -WORKDIR ${prefix}/libexec/keyoxide +COPY --link --from=nodejs / /usr/local/ +COPY --link --from=npm / /usr/local/ +WORKDIR /uniget_bootstrap/libexec/keyoxide ARG name ARG version RUN <