MilesCranmer commited on
Commit
fb19729
·
unverified ·
1 Parent(s): e9e85bd

Fix path issue

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -23,7 +23,7 @@ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
23
 
24
  # Install Julia:
25
  RUN curl -fsSL https://install.julialang.org | sh -s -- -y --default-channel=1.10.0
26
- RUN ln -s /root/.julia/bin/julia /usr/local/bin/julia
27
  # Install Julia dependencies
28
  RUN python -c "import pysr"
29
 
 
23
 
24
  # Install Julia:
25
  RUN curl -fsSL https://install.julialang.org | sh -s -- -y --default-channel=1.10.0
26
+ ENV PYTHON_JULIACALL_BINDIR="/root/.julia/bin"
27
  # Install Julia dependencies
28
  RUN python -c "import pysr"
29