mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-02-28 17:54:24 +01:00
11 lines
488 B
Docker
11 lines
488 B
Docker
# Building an SCons Test image under Fedora 32
|
|
FROM fedora:32
|
|
|
|
LABEL version="0.0.1" maintainer="Dirk Baechle <dl9obn@darc.de>" description="SCons Test image, based on a Fedora 32"
|
|
|
|
# Install additional packages
|
|
RUN dnf -y install git bison cvs flex g++ gcc ghostscript m4 openssh-clients openssh-server python3-line_profiler python3-devel pypy3-devel rpm-build rcs java-1.8.0-openjdk swig texlive-scheme-basic texlive-base texlive-latex zip xterm vim vim-common nano
|
|
|
|
CMD ["/bin/bash"]
|
|
|