fixed Docker build
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Sebastian Frank 2019-03-19 12:56:56 +01:00
parent baa38b668e
commit 3c87da15e1
Signed by: apairon
GPG Key ID: 7270D06DDA7FE8C3
2 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ steps:
- name: build docker image
image: docker
commands:
- cp dist/mark2web-`cat build/VERSION`-linux-amd64 mark2web
- cp dist/mark2web-`cat build/VERSION`-linux-amd64 build/package/mark2web
- docker build -t apairon/mark2web build/package
volumes:
- name: docker

View File

@ -1,4 +1,4 @@
FROM alpine
RUN apk update && apk add ca-certificates openssh-client sshpass rsync gzip && rm -r /var/cache/
ADD ../../mark2web /
ADD mark2web /
CMD ["/mark2web"]