Spaces:
Sleeping
Sleeping
File size: 260 Bytes
d34440f 16a1040 d34440f 16a1040 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
# Install Python dependencies:
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Install Julia:
RUN python -c "import pysr"
COPY . .
CMD ["python", "app.py"]
|