Skip to content

Commit

Permalink
Fix builds #2213
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasdille committed Jan 1, 2024
1 parent 11905d3 commit 3c90d9e
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions tools/k2d/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/keybase/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions tools/keyoxide/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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 <<EOF
Expand Down
2 changes: 1 addition & 1 deletion tools/kube-apiserver/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
ARG name
ARG version
RUN <<EOF
Expand Down
2 changes: 1 addition & 1 deletion tools/kube-controller-manager/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
ARG name
ARG version
RUN <<EOF
Expand Down
2 changes: 1 addition & 1 deletion tools/kube-proxy/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
ARG name
ARG version
RUN <<EOF
Expand Down
2 changes: 1 addition & 1 deletion tools/kube-scheduler/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
ARG name
ARG version
RUN <<EOF
Expand Down
2 changes: 1 addition & 1 deletion tools/kubeadm/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
ARG name
ARG version
COPY kubelet.service ${prefix}/etc/systemd/system/
Expand Down
6 changes: 3 additions & 3 deletions tools/kubebox/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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/kubebox
COPY --link --from=nodejs / /usr/local/
COPY --link --from=npm / /usr/local/
WORKDIR /uniget_bootstrap/libexec/kubebox
ARG name
ARG version
RUN <<EOF
Expand Down
2 changes: 1 addition & 1 deletion tools/kubectl-plugins/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=krew / /
COPY --from=krew / /usr/local/
ARG name
ARG version
COPY --chmod=755 <<EOF ${prefix}/bin/krew-uniget
Expand Down
2 changes: 1 addition & 1 deletion tools/kubectl/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
SHELL [ "bash", "-clo", "errexit" ]
ARG name
ARG version
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
COPY kubectl.sh ${prefix}/etc/profile.d/
RUN <<EOF
curl --silent --location --fail --output "${prefix}/bin/kubectl" \
Expand Down
2 changes: 1 addition & 1 deletion tools/kubelet/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ COPY --from=ghcr.io/uniget-org/tools/uniget-build:latest \
/etc/profile.d/ \
/etc/profile.d/
SHELL [ "bash", "-clo", "errexit" ]
COPY --from=cosign / /
COPY --from=cosign / /usr/local/
ARG name
ARG version
COPY kubelet.service ${prefix}/etc/systemd/system/
Expand Down

0 comments on commit 3c90d9e

Please sign in to comment.