mirror of
https://github.com/thegeeklab/wp-git-action.git
synced 2024-11-14 09:00:42 +00:00
12 lines
381 B
Docker
12 lines
381 B
Docker
|
FROM plugins/base:linux-arm64
|
||
|
|
||
|
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" \
|
||
|
org.label-schema.name="Drone Git Action" \
|
||
|
org.label-schema.vendor="Drone.IO Community" \
|
||
|
org.label-schema.schema-version="1.0"
|
||
|
|
||
|
RUN apk add --no-cache ca-certificates git openssh curl perl
|
||
|
|
||
|
ADD release/linux/arm64/drone-git-action /bin/
|
||
|
ENTRYPOINT ["/bin/drone-git-action"]
|