Skip to content

Commit ad49486

Browse files
authored
#1294: Updated cuda test flavor (#580)
related to exasol/script-languages-release#1294 related to exasol/script-languages-release#1300
1 parent 05351b2 commit ad49486

File tree

17 files changed

+50
-45
lines changed

17 files changed

+50
-45
lines changed

flavors/template-Exasol-8-python-3.12-cuda-conda/flavor_base/conda_deps/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ ENV MAMBA_DOCKERFILE_ACTIVATE=1
1919

2020
COPY scripts/virtual_environment/_activate_current_conda_env.sh /usr/local/bin/_activate_current_env.sh
2121

22-
RUN addgroup --gid 1001 exasolution
23-
RUN adduser --disabled-login --uid 1001 --gid 1001 exasolution --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
24-
RUN addgroup --gid 501 exausers
25-
RUN adduser --disabled-login --uid 501 --gid 501 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
22+
RUN usermod -l exasolution ubuntu
23+
RUN groupmod -n exasolution ubuntu
24+
RUN addgroup --gid 500 exausers
25+
RUN adduser --disabled-login --uid 500 --gid 500 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
2626

2727
SHELL ["/bin/bash", "-l", "-c"]
2828
ENV MICROMAMBA_VERSION=0.24.0

flavors/template-Exasol-all-python-3.12-conda/flavor_base/conda_deps/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ ENV MAMBA_DOCKERFILE_ACTIVATE=1
1919

2020
COPY conda_deps/_activate_current_env.sh /usr/local/bin/_activate_current_env.sh
2121

22-
RUN addgroup --gid 1001 exasolution
23-
RUN adduser --disabled-login --uid 1001 --gid 1001 exasolution --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
24-
RUN addgroup --gid 501 exausers
25-
RUN adduser --disabled-login --uid 501 --gid 501 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
22+
RUN usermod -l exasolution ubuntu
23+
RUN groupmod -n exasolution ubuntu
24+
RUN addgroup --gid 500 exausers
25+
RUN adduser --disabled-login --uid 500 --gid 500 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
2626

2727
SHELL ["/bin/bash", "-l", "-c"]
2828
ENV MICROMAMBA_VERSION=0.24.0

flavors/template-Exasol-all-python-3.12/flavor_base/udfclient_deps/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ RUN mkdir -p /build_info/packages
1111
COPY udfclient_deps/packages /build_info/packages/udfclient_deps
1212
RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/udfclient_deps/apt_get_packages --with-versions
1313

14-
RUN addgroup --gid 1001 exasolution
15-
RUN adduser --disabled-login --uid 1001 --gid 1001 exasolution --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
16-
RUN addgroup --gid 501 exausers
17-
RUN adduser --disabled-login --uid 501 --gid 501 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
14+
RUN usermod -l exasolution ubuntu
15+
RUN groupmod -n exasolution ubuntu
16+
RUN addgroup --gid 500 exausers
17+
RUN adduser --disabled-login --uid 500 --gid 500 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
1818

1919
ENV LANG en_US.UTF-8
2020
ENV LANGUAGE en_US:en

flavors/test-Exasol-8-cuda-ml/FLAVOR_DESCRIPTION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Details for template-Exasol-8-python-3.10-cuda-conda flavor
1+
# Details for test-Exasol-8-cuda-ml
22

33
## Packages
44

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
gdb|12.1-0ubuntu1~22.04.2
2-
valgrind|1:3.18.1-1ubuntu2
3-
gdbserver|12.1-0ubuntu1~22.04.2
4-
binutils|2.38-4ubuntu2.8
5-
patchelf|0.14.3-1
6-
strace|5.16-0ubuntu3
1+
gdb|15.0.50.20240403-0ubuntu1
2+
valgrind|1:3.22.0-0ubuntu3
3+
gdbserver|15.0.50.20240403-0ubuntu1
4+
binutils|2.42-4ubuntu2.5
5+
patchelf|0.18.0-1.1build1
6+
strace|6.8-0ubuntu2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
protobuf|6.31.1
22
pcre|8.45
3-
bazel|7.6.1
4-
make|4.3
3+
bazel|8.3.1
4+
make|4.4.1
55
chrpath|0.16
66
gxx_linux-64|15.1.0
77
gcc_linux-64|15.1.0

flavors/test-Exasol-8-cuda-ml/flavor_base/conda_deps/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22
ENV DEBIAN_FRONTEND=noninteractive
33

44
ENV ARCHIVE_UBUNTU_PREFIX=""
@@ -19,8 +19,8 @@ ENV MAMBA_DOCKERFILE_ACTIVATE=1
1919

2020
COPY scripts/virtual_environment/_activate_current_conda_env.sh /usr/local/bin/_activate_current_env.sh
2121

22-
RUN addgroup --gid 1000 exasolution
23-
RUN adduser --disabled-login --uid 1000 --gid 1000 exasolution --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
22+
RUN usermod -l exasolution ubuntu
23+
RUN groupmod -n exasolution ubuntu
2424
RUN addgroup --gid 500 exausers
2525
RUN adduser --disabled-login --uid 500 --gid 500 exadefusr --gecos "First Last,RoomNumber,WorkPhone,HomePhone"
2626

@@ -30,4 +30,4 @@ RUN /scripts/install_scripts/install_micromamba.sh "$MICROMAMBA_VERSION"
3030

3131
ENV LANG en_US.UTF-8
3232
ENV LANGUAGE en_US:en
33-
ENV LC_ALL en_US.UTF-8
33+
ENV LC_ALL en_US.UTF-8
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
coreutils|8.32-4.1ubuntu1.2
2-
locales|2.35-0ubuntu3.11
3-
curl|7.81.0-1ubuntu1.21
4-
ca-certificates|20240203~22.04.1
5-
bzip2|1.0.8-5build1
6-
libxml2|2.9.13+dfsg-1ubuntu0.9
1+
coreutils|9.4-3ubuntu6.1
2+
adduser|3.137ubuntu1
3+
locales|2.39-0ubuntu8.6
4+
curl|8.5.0-2ubuntu10.6
5+
ca-certificates|20240203
6+
bzip2|1.0.8-5.1build0.1
7+
libxml2|2.9.14+dfsg-1.3ubuntu3.5

flavors/test-Exasol-8-cuda-ml/flavor_base/flavor_base_deps/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ RUN /scripts/install_scripts/install_via_apt.pl --file /build_info/packages/flav
77

88
RUN /scripts/install_scripts/install_via_conda.pl --file /build_info/packages/flavor_base_deps/conda_packages --channel-file /build_info/packages/flavor_base_deps/conda_channels --with-versions --conda-binary "$MAMBA_ROOT_PREFIX/bin/mamba"
99

10-
RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps/python3_pip_packages --python-binary "$MAMBA_ROOT_PREFIX/bin/python3.10" --with-versions --allow-no-version
10+
RUN /scripts/install_scripts/install_via_pip.pl --file /build_info/packages/flavor_base_deps/python3_pip_packages --python-binary "$MAMBA_ROOT_PREFIX/bin/python3.12" --with-versions --allow-no-version
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
tzdata|2025b-0ubuntu0.22.04.1
1+
tzdata|2025b-0ubuntu0.24.04.1

0 commit comments

Comments
 (0)