Build dockerfile for renovate
continuous-integration/drone/push Build encountered an error Details

main
Georg Krause 2022-02-17 19:44:45 +01:00
parent 4a2081d4a2
commit d7e572bf6d
No known key found for this signature in database
GPG Key ID: FD479B9A4D48E632
2 changed files with 18 additions and 1 deletions

View File

@ -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:

4
Dockerfile Normal file
View File

@ -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