Init
continuous-integration/drone/push Build is passing Details

master
Simon Bruder 2020-02-03 06:30:34 +00:00
commit e1deb563af
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 20 additions and 0 deletions

13
.drone.yml Normal file
View File

@ -0,0 +1,13 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
settings:
registry: r.sbruder.de
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: r.sbruder.de/calibre

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM debian:testing
RUN apt-get update \
&& apt-get -y install --no-install-recommends calibre \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["calibredb"]