diff --git a/.drone.yml b/.drone.yml index 221dce5..91dcf00 100644 --- a/.drone.yml +++ b/.drone.yml @@ -5,8 +5,21 @@ platform: arch: arm64 steps: + - name: build + commands: + - docker build -t gcrkrause/renovate . --no-cache + - name: push + environment: + USERNAME: + from_secret: docker-hub-user + PASSWORD: + from_secret: docker-hub-pw + commands: + - docker login -u $USERNAME -p $PASSWORD + - docker push gckrause/renovate + - name: renovate - image: jessestuart/renovate + image: gcrkrause/renovate envorinment: RENOVATE_ENDPOINT: https://git.gieszer.link/api/v1 RENOVATE_TOKEN: diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..52a55bd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM debian:slim +RUN apt-get update && apt-get install -y nodejs python yarnpkg +RUN yarn add -g renovate +CMD renovate