-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (18 loc) · 736 Bytes
/
Dockerfile
File metadata and controls
23 lines (18 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM ubuntu:20.04
# ref:
# - [calibre/README.rst at master · snomiao/calibre]( https://github.com/snomiao/calibre/blob/master/bypy/README.rst#id3 )
# some...
RUN apt update
RUN apt-get install -y git
# RUN apt install -y git
# clone project
# blocked by gfw
RUN git clone https://github.com/kovidgoyal/bypy.git
RUN git clone https://github.com/kovidgoyal/calibre.git
# need ssh keys
# RUN git clone git@github.com:kovidgoyal/bypy.git
# RUN git clone git@github.com:kovidgoyal/calibre.git
# install dependances
# TODO: #5 docker build install dependances, ref: [calibre/sources.json at master · kovidgoyal/calibre]( https://github.com/kovidgoyal/calibre/blob/master/bypy/sources.json )
#
RUN cd calibre && ./setup.py bootstrap