Skip to content

Commit

Permalink
add python 3.13 to ubuntu risc build image (#91)
Browse files Browse the repository at this point in the history
* add python 3.13 to ubuntu risc build image

* Update Dockerfile
  • Loading branch information
altendky authored Jan 14, 2025
1 parent 5bfe33c commit d79f61f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ubuntu-22.04-risc/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,16 @@ RUN pyenv install 3.9
RUN pyenv install 3.10
RUN pyenv install 3.11
RUN pyenv install 3.12
RUN pyenv install 3.13

RUN pyenv global 3.12 3.11 3.10 3.9
RUN pyenv global 3.13 3.12 3.11 3.10 3.9

# make sure sqlite is loaded from the expected path
RUN ldd $(python3.9 -c 'import _sqlite3; print(_sqlite3.__file__)') | grep /opt/sqlite3/lib/
RUN ldd $(python3.10 -c 'import _sqlite3; print(_sqlite3.__file__)') | grep /opt/sqlite3/lib/
RUN ldd $(python3.11 -c 'import _sqlite3; print(_sqlite3.__file__)') | grep /opt/sqlite3/lib/
RUN ldd $(python3.12 -c 'import _sqlite3; print(_sqlite3.__file__)') | grep /opt/sqlite3/lib/
RUN ldd $(python3.13 -c 'import _sqlite3; print(_sqlite3.__file__)') | grep /opt/sqlite3/lib/

ENV PATH="/root/.cargo/bin:${PATH}"
ENV RUST_BACKTRACE=1
Expand Down

0 comments on commit d79f61f

Please sign in to comment.