Skip to content

Commit af2e18d

Browse files
Install libatomic1 for Pyodide Dockerfile
1 parent eebb7a8 commit af2e18d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/docker/conda-python-emscripten.dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,14 @@ ARG required_python_min="(3,13)"
2727
# fail if python version < 3.13
2828
RUN echo "check PYTHON>=${required_python_min}" && python -c "import sys;sys.exit(0 if sys.version_info>=${required_python_min} else 1)"
2929

30-
# install selenium and recent pyodide-build and recent python
30+
RUN apt-get update -y -q && \
31+
apt install -y -q --no-install-recommends \
32+
libatomic1
3133

3234
# needs to be a login shell so ~/.profile is read
3335
SHELL ["/bin/bash", "--login", "-c", "-o", "pipefail"]
3436

37+
# install selenium and recent pyodide-build and recent python
3538
RUN python -m pip install --no-cache-dir selenium==${selenium_version} && \
3639
python -m pip install --no-cache-dir --upgrade pyodide-build>=${pyodide_version}
3740

0 commit comments

Comments
 (0)