Skip to content

Commit ab4dd9c

Browse files
committed
Add Dockerfile_fedora36_py311/Dockerfile
1 parent 7f52d88 commit ab4dd9c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Dockerfile_fedora36_py311/Dockerfile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# docker build -t fedora36_py311 .
2+
# https://github.com/python/cpython/issues/96046
3+
4+
FROM fedora:36
5+
RUN dnf -y install gcc
6+
RUN dnf -y install g++
7+
RUN dnf -y install gdb
8+
RUN dnf -y install git
9+
RUN dnf -y install qpdf-devel
10+
RUN dnf -y install python3.11
11+
RUN dnf -y install python3.11-devel
12+
13+
# docker run --rm -v $HOME/forked/pybind11:/mounted_pybind11 -it fedora36_py311
14+
15+
# python3.11 -m venv env
16+
# source /env/bin/activate
17+
# python -m pip install --upgrade pip
18+
# python -m pip install pytest
19+
# python -m pip install IPython
20+
# python -m pip install sphinx sphinx_issues sphinx_design sphinx_rtd_theme
21+
# git clone https://github.com/pikepdf/pikepdf
22+
# cd pikepdf/
23+
# python -m pip install .
24+
# cd docs
25+
# /env/bin/sphinx-build . ../html
26+
# gdb /usr/bin/python3.11 core

0 commit comments

Comments
 (0)