Spaces:
Sleeping
Sleeping
Install juliaup
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -22,6 +22,8 @@ COPY ./requirements.txt /code/requirements.txt
|
|
22 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
23 |
|
24 |
# Install Julia:
|
|
|
|
|
25 |
RUN python -c "import pysr"
|
26 |
|
27 |
COPY . .
|
|
|
22 |
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 |
+
# Install Julia dependencies
|
27 |
RUN python -c "import pysr"
|
28 |
|
29 |
COPY . .
|