File: Dockerfile

package info (click to toggle)
coreboot 4.15~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 241,604 kB
  • sloc: ansic: 1,669,060; sh: 16,012; perl: 9,464; pascal: 9,098; asm: 8,353; makefile: 4,638; cpp: 4,049; python: 4,013; ada: 1,609; yacc: 1,261; lex: 731; sed: 75; lisp: 5; php: 2
file content (29 lines) | stat: -rw-r--r-- 813 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM alpine:3.8

COPY makeSphinx.sh /makeSphinx.sh

ADD https://sourceforge.net/projects/ditaa/files/ditaa/0.9/ditaa0_9.zip/download /tmp/ditaa.zip

RUN apk add --no-cache python3 make bash git openjdk8-jre ttf-dejavu fontconfig \
 && pip3 install --upgrade --no-cache-dir pip \
 && pip3 install --no-cache-dir  \
    sphinx===1.8.3 \
    sphinx_rtd_theme===0.4.2 \
    recommonmark===0.5.0 \
    sphinx_autobuild===0.7.1 \
    sphinxcontrib-ditaa===0.6 \
 && chmod 755 /makeSphinx.sh
RUN cd /tmp \
 && unzip ditaa.zip \
 && mv ditaa0_9.jar /usr/lib
ADD ditaa.sh /usr/bin/ditaa

VOLUME /data-in /data-out

# For Sphinx-autobuild
# Port 8000 - HTTP server
# Port 35729 - websockets connection to allow automatic browser reloads after each build
EXPOSE 8000 35729

ENTRYPOINT ["/bin/bash", "/makeSphinx.sh"]
CMD []