Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ def main(ctx):
linux('amd64'),
linux('arm64'),
linux('arm'),
linux('ppc64le'),
windows('1909'),
windows('1903'),
windows('1809'),
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ docker build \
--file docker/Dockerfile.linux.arm \
--tag plugins/base:linux-arm .

docker build \
--label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
--file docker/Dockerfile.linux.ppc64le \
--tag plugins/base:linux-ppc64le .

docker build \
--label org.label-schema.build-date=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \
--label org.label-schema.vcs-ref=$(git rev-parse --short HEAD) \
Expand Down
10 changes: 10 additions & 0 deletions docker/Dockerfile.linux.ppc64le
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM alpine:3.15@sha256:06c6c1449b733ddaf553c4c09dce5caf0618cb1c334b0bf62bbb5301ba411162
RUN apk add --no-cache ca-certificates mailcap && \
echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories

LABEL maintainer="Drone.IO Community <[email protected]>" \
org.label-schema.name="Drone Base" \
org.label-schema.vendor="Drone.IO Community" \
org.label-schema.schema-version="1.0"

ENV GODEBUG=netdns=go