Compare commits

...

1 Commits

Author SHA1 Message Date
Simon Bruder 35428ef25a
Add python2 version (for certain plugins) 2020-02-17 17:34:56 +00:00
2 changed files with 21 additions and 0 deletions

View File

@ -11,3 +11,17 @@ 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"]