mirror of
https://github.com/ViViDboarder/drone-webdav.git
synced 2025-01-06 12:37:33 +00:00
9 lines
169 B
Docker
9 lines
169 B
Docker
|
FROM alpine
|
||
|
MAINTAINER ViViDboarder <ViViDboarder@gmail.com>
|
||
|
|
||
|
RUN apk -Uuv add curl ca-certificates
|
||
|
ADD push.sh /bin/
|
||
|
RUN chmod +x /bin/push.sh
|
||
|
|
||
|
ENTRYPOINT /bin/push.sh
|