scons_gd/scons/testing/docker/fedora32/build/Dockerfile

18 lines
932 B
Docker
Raw Normal View History

2022-10-15 16:06:26 +02:00
# Building an SCons Release Build image under Fedora 32
FROM fedora:32
LABEL version="0.0.1" maintainer="Dirk Baechle <dl9obn@darc.de>" description="SCons Release Build, based on a Fedora 32"
# Install additional packages
RUN dnf -y install git python3-lxml binutils fop fontbox python3-devel python3-sphinx python3-sphinx_rtd_theme lynx xterm vim vim-common nano unzip
# Install hyphenation patterns for FOP
RUN mkdir /opt/offo && cd /opt/offo && curl -L --output offo-hyphenation-compiled.zip https://sourceforge.net/projects/offo/files/offo-hyphenation/2.2/offo-hyphenation-compiled.zip/download && unzip offo-hyphenation-compiled.zip && cp offo-hyphenation-compiled/fop-hyph.jar /usr/share/fop/
# Epydoc can be installed via pip3, but it doesn't seem to work properly.
# For the moment we don't install it and might replace it with Sphinx later...
# RUN dnf -y install python3-pip && pip3 install epydoc
CMD ["/bin/bash"]