Compare commits

...

1 Commits

Author SHA1 Message Date
Simon Bruder 28a60ae70d
Add python2 version (for certain plugins)
continuous-integration/drone/push Build was killed Details
2020-02-17 17:29:42 +00:00
2 changed files with 19 additions and 0 deletions

View File

@ -11,3 +11,15 @@ steps:
password:
from_secret: docker_password
repo: r.sbruder.de/calibre
- 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

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"]