Skip to content

Commit

Permalink
switch dockerfile to use py3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwifb committed Dec 4, 2024
1 parent 88a6f45 commit f960ea3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions tools/docker/dockerfile-devel
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN mkdir -p /etc/portage/package.mask
RUN echo "dev-lang/rust-bin" > /etc/portage/package.mask/rust-bin.masked

# continue with image build ...
# set python 3.11
RUN echo 'PYTHON_TARGETS="python3_11"' >> /etc/portage/make.conf
RUN echo 'PYTHON_SINGLE_TARGET="python3_11"' >> /etc/portage/make.conf
# set python 3.12
RUN echo 'PYTHON_TARGETS="python3.12"' >> /etc/portage/make.conf
RUN echo 'PYTHON_SINGLE_TARGET="python3.12"' >> /etc/portage/make.conf
# add license for givaro(?)
RUN echo 'ACCEPT_LICENSE="CeCILL-B"' >> /etc/portage/make.conf
# disable portage features not working in containers
Expand Down
6 changes: 3 additions & 3 deletions tools/docker/dockerfile-release
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ RUN mkdir -p /etc/portage/package.mask
RUN echo "dev-lang/rust-bin" > /etc/portage/package.mask/rust-bin.masked

# continue with image build ...
# set python 3.11
RUN echo 'PYTHON_TARGETS="python3_11"' >> /etc/portage/make.conf
RUN echo 'PYTHON_SINGLE_TARGET="python3_11"' >> /etc/portage/make.conf
# set python 3.12
RUN echo 'PYTHON_TARGETS="python3.12"' >> /etc/portage/make.conf
RUN echo 'PYTHON_SINGLE_TARGET="python3.12"' >> /etc/portage/make.conf
# add license for givaro(?)
RUN echo 'ACCEPT_LICENSE="CeCILL-B"' >> /etc/portage/make.conf
# disable portage features not working in containers
Expand Down

0 comments on commit f960ea3

Please sign in to comment.