cenv/Program/julia/Dockerfile
ben0i0d c5633b1151
All checks were successful
Flow / Base (push) Successful in 5s
Flow / CUDA_Base (push) Successful in 5s
Flow / C (push) Successful in 7s
Flow / Cpp (push) Successful in 7s
Flow / JDK (push) Successful in 8s
Flow / JRE (push) Successful in 6s
Flow / JS (push) Successful in 6s
Flow / Python (push) Successful in 8s
Flow / R (push) Successful in 8s
Flow / MC_BE (push) Successful in 7s
Flow / MC_JRE_8 (push) Successful in 7s
Flow / MC_JRE_11 (push) Successful in 8s
Flow / MC_JRE_17 (push) Successful in 8s
Flow / MC_JRE_21 (push) Successful in 9s
Flow / Steam (push) Successful in 7s
Flow / CUDA_Runtime (push) Successful in 6s
Flow / Hexo (push) Successful in 8s
Flow / Jupyterlite (push) Successful in 9s
Flow / Julia (push) Successful in 9s
Flow / Steam_Wine (push) Successful in 7s
Flow / CUDA_Devel (push) Successful in 6s
Flow / LLAMA (push) Successful in 3m34s
Flow / Push (push) Successful in 4s
Push_ghcr / Push (push) Successful in 57s
update julia-mirror
2025-01-22 13:07:56 +08:00

16 lines
465 B
Docker

FROM eoelab.org:1027/eoeair/cenv:python AS builder
# install Julia packages in /opt/julias
RUN apt-get update --yes && apt-get install --yes --no-install-recommends gnupg && \
pip install jill && jill install --confirm 1
FROM eoelab.org:1027/eoeair/cenv:base
ARG JULIA_MIRROR
COPY --from=builder /opt/julias/ /opt/julias/
ENV JULIA_PKG_SERVER=${JULIA_MIRROR} \
JULIA_NUM_THREADS=8
RUN ln -s "`find /opt/julias -name 'bin'`/julia" /usr/local/bin/julia