Skip to content

Commit

Permalink
fix for sqlite3
Browse files Browse the repository at this point in the history
  • Loading branch information
mhwasil committed Oct 23, 2024
1 parent a6699a0 commit 84daeab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions geo-notebook/cuda12-pytorch-2.2.2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ RUN pip install --no-cache-dir -r /tmp/requirements.txt

# clean up
USER root
# (maybe) fix sqlite3 issue
# ImportError: /opt/conda/lib/python3.11/lib-dynload/_sqlite3.cpython-311-x86_64-linux-gnu.so: undefined symbol: sqlite3_deserialize
RUN apt install -y sqlite3 libsqlite3-dev

RUN rm /tmp/requirements.txt && \
/opt/conda/bin/conda clean -afy && \
find /opt/conda/ -follow -type f -name '*.a' -delete && \
Expand Down

0 comments on commit 84daeab

Please sign in to comment.