Compare commits

...

1 Commits

Author SHA1 Message Date
Simon Bruder 515840213a
Add python2 version (for certain plugins)
continuous-integration/drone/push Build was killed Details
2020-02-17 17:36:31 +00:00
2 changed files with 23 additions and 0 deletions

View File

@ -11,3 +11,19 @@ steps:
password:
from_secret: docker_password
repo: r.sbruder.de/calibre
depends_on:
- clone
- name: docker-v2
image: plugins/docker
settings:
registry: r.sbruder.de
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: Dockerfile.python2
repo: r.sbruder.de/calibre
tags: python2
depends_on:
- clone

7
Dockerfile.python2 Normal file
View File

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