Skip to content

Commit 3666516

Browse files
committed
Bumped the Fedora version up to 32.
We bump up the Fedora version, since v30 has reached its EOL on 2020-05-26.
1 parent 3ed4cb6 commit 3666516

File tree

14 files changed

+15
-15
lines changed

14 files changed

+15
-15
lines changed

testing/docker/fedora30/build/Dockerfile renamed to testing/docker/fedora32/build/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Building an SCons Release Build image under Fedora 30
2-
FROM fedora:30
1+
# Building an SCons Release Build image under Fedora 32
2+
FROM fedora:32
33

4-
LABEL version="0.0.1" maintainer="Dirk Baechle <[email protected]>" description="SCons Release Build, based on a Fedora 30"
4+
LABEL version="0.0.1" maintainer="Dirk Baechle <[email protected]>" description="SCons Release Build, based on a Fedora 32"
55

66
# Install additional packages
7-
RUN dnf -y install git python3-lxml fop fontbox python3-devel lynx xterm vim vim-common nano
7+
RUN dnf -y install git python3-lxml fop fontbox python3-devel lynx xterm vim vim-common nano unzip
88

99
# Install hyphenation patterns for FOP
1010
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/

testing/docker/fedora30/build/build_image.sh renamed to testing/docker/fedora32/build/build_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cd $WD
1010

1111
# call docker build passing any other build options (command line options may override!)
1212
docker build --network=host --file Dockerfile \
13-
-t scons-build-fedora30:latest -t scons-build-fedora30:0.0.1 "$@" .
13+
-t scons-build-fedora32:latest -t scons-build-fedora32:0.0.1 "$@" .
1414

1515
cd $OLD_WD
1616

testing/docker/fedora30/build/docker-compose.yml renamed to testing/docker/fedora32/build/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
build:
5-
image: scons-build-fedora30:latest
5+
image: scons-build-fedora32:latest
66
restart: always
77
environment:
88
- DISPLAY
@@ -15,7 +15,7 @@ services:
1515
- /etc/shadow:/etc/shadow:ro
1616
- /etc/group:/etc/group:ro
1717
- ./startup:/startup
18-
container_name: SCons_Build_Fedora30
18+
container_name: SCons_Build_Fedora32
1919
entrypoint: /startup/setup_container.sh
2020
user: $DOCKERUID:$DOCKERGID
2121
working_dir: $HOME

testing/docker/fedora30/build/readme.rst renamed to testing/docker/fedora32/build/readme.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Image for building/releasing SCons
33
==================================
44

55
This folder contains the files and scripts that can be used to
6-
build and release SCons, based on a Fedora 30.
6+
build and release SCons, based on a Fedora 32.
77

88
Building the image
99
==================

testing/docker/fedora30/test/Dockerfile renamed to testing/docker/fedora32/test/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Building an SCons Test image under Fedora 30
2-
FROM fedora:30
1+
# Building an SCons Test image under Fedora 32
2+
FROM fedora:32
33

4-
LABEL version="0.0.1" maintainer="Dirk Baechle <[email protected]>" description="SCons Test image, based on a Fedora 30"
4+
LABEL version="0.0.1" maintainer="Dirk Baechle <[email protected]>" description="SCons Test image, based on a Fedora 32"
55

66
# Install additional packages
77
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

testing/docker/fedora30/test/build_image.sh renamed to testing/docker/fedora32/test/build_image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cd $WD
1010

1111
# call docker build passing any other build options (command line options may override!)
1212
docker build --network=host --file Dockerfile \
13-
-t scons-test-fedora30:latest -t scons-test-fedora30:0.0.1 "$@" .
13+
-t scons-test-fedora32:latest -t scons-test-fedora32:0.0.1 "$@" .
1414

1515
cd $OLD_WD
1616

testing/docker/fedora30/test/docker-compose.yml renamed to testing/docker/fedora32/test/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22

33
services:
44
build:
5-
image: scons-test-fedora30:latest
5+
image: scons-test-fedora32:latest
66
restart: always
77
environment:
88
- DISPLAY
@@ -15,7 +15,7 @@ services:
1515
- /etc/shadow:/etc/shadow:ro
1616
- /etc/group:/etc/group:ro
1717
- ./startup:/startup
18-
container_name: SCons_Test_Fedora30
18+
container_name: SCons_Test_Fedora32
1919
entrypoint: /startup/setup_container.sh
2020
user: $DOCKERUID:$DOCKERGID
2121
working_dir: $HOME

0 commit comments

Comments
 (0)