0
0
mirror of https://github.com/thegeeklab/wp-s3-action.git synced 2024-09-20 01:42:46 +02:00
wp-s3-action/docker/Dockerfile.arm

17 lines
706 B
Docker
Raw Normal View History

2022-11-11 00:44:21 +01:00
FROM arm32v7/alpine:3.16@sha256:b1bf0a88958c558f15d3399612e5b4d3464fedfb62b15701255f1f9bbeb5253b
2022-05-02 22:45:43 +02:00
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="drone-s3-sync"
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/drone-s3-sync"
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-s3-sync"
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-s3-sync"
RUN apk --update add --no-cache libc6-compat && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/*
2022-05-02 22:45:43 +02:00
ADD dist/drone-s3-sync /bin/
ENTRYPOINT ["/bin/drone-s3-sync"]