mirror of
https://github.com/thegeeklab/wp-gitea-release.git
synced 2024-11-10 03:40:40 +00:00
10 lines
184 B
Docker
10 lines
184 B
Docker
|
FROM armhfbuild/alpine:3.4
|
||
|
|
||
|
RUN apk update && \
|
||
|
apk add \
|
||
|
ca-certificates && \
|
||
|
rm -rf /var/cache/apk/*
|
||
|
|
||
|
ADD drone-github-release /bin/
|
||
|
ENTRYPOINT ["/bin/drone-github-release"]
|