Select Git revision
push-rebase.yaml
-
dependabot[bot] authored
Bumps [bbeesley/gha-auto-dependabot-rebase](https://github.com/bbeesley/gha-auto-dependabot-rebase) from 1.5.116 to 1.5.123. - [Release notes](https://github.com/bbeesley/gha-auto-dependabot-rebase/releases) - [Changelog](https://github.com/bbeesley/gha-auto-dependabot-rebase/blob/main/CHANGELOG.md) - [Commits](https://github.com/bbeesley/gha-auto-dependabot-rebase/compare/v1.5.116...v1.5.123 ) --- updated-dependencies: - dependency-name: bbeesley/gha-auto-dependabot-rebase dependency-version: 1.5.123 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com>
dependabot[bot] authoredBumps [bbeesley/gha-auto-dependabot-rebase](https://github.com/bbeesley/gha-auto-dependabot-rebase) from 1.5.116 to 1.5.123. - [Release notes](https://github.com/bbeesley/gha-auto-dependabot-rebase/releases) - [Changelog](https://github.com/bbeesley/gha-auto-dependabot-rebase/blob/main/CHANGELOG.md) - [Commits](https://github.com/bbeesley/gha-auto-dependabot-rebase/compare/v1.5.116...v1.5.123 ) --- updated-dependencies: - dependency-name: bbeesley/gha-auto-dependabot-rebase dependency-version: 1.5.123 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by:
dependabot[bot] <support@github.com>
Dockerfile 553 B
# syntax=docker/dockerfile:1.7.0
FROM alpine
ARG TARGETPLATFORM
RUN if [ "$TARGETPLATFORM" != "linux/amd64" ] && [ "$TARGETPLATFORM" != "linux/arm64" ] && [ "$TARGETPLATFORM" != "linux/arm/v7" ] && [ "$TARGETPLATFORM" != "linux/riscv64" ]; then \
echo "Error: Unsupported TARGETPLATFORM: $TARGETPLATFORM" && \
exit 1; \
fi
ENV ARCH ${TARGETPLATFORM#linux/}
ENV ARCH ${ARCH%/v7}
RUN apk update
RUN apk upgrade --no-cache busybox zlib
COPY bin/local-path-provisioner-${ARCH} /usr/bin/local-path-provisioner
CMD ["local-path-provisioner"]