updated code to new maintainer

and using latest alpine
This commit is contained in:
Jesse Quinn
2019-11-27 17:22:48 -03:00
parent 8acd960634
commit 9e935426bd
3 changed files with 5 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ steps:
- "app.tar.gz.md5"
exclude:
- "**.*"
postscript:
postscript:
- cd ~/packages
- md5sum -c app.tar.gz.md5
- tar -xf app.tar.gz -C ~/app

View File

@@ -1,7 +1,7 @@
FROM alpine:3.4
MAINTAINER Michael de Wit <michael@drillster.com>
FROM alpine:latest
MAINTAINER Jesse Quinn <me@jessequinn.info>
RUN apk add --no-cache ca-certificates bash openssh-client rsync
COPY upload.sh /usr/local/
COPY drone.sh /usr/local/
ENTRYPOINT ["/usr/local/upload.sh"]
ENTRYPOINT ["/usr/local/drone.sh"]

View File