mirror of
https://github.com/MillironX/docker-BioJulia.git
synced 2024-11-21 14:36:03 +00:00
Thomas A. Christensen II
038153a42a
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
20 lines
569 B
Docker
20 lines
569 B
Docker
FROM julia:1.6-bullseye
|
|
|
|
ENV JULIA_DEPOT_PATH="/usr/local/share/julia"
|
|
|
|
RUN \
|
|
apt-get update && \
|
|
apt-get install -y --no-install-recommends procps && \
|
|
rm -rf /var/lib/apt/lists/* && \
|
|
apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false
|
|
|
|
COPY Project.toml /
|
|
COPY Manifest.toml /
|
|
|
|
RUN julia -e 'using Pkg; Pkg.instantiate()'
|
|
RUN julia --project=/ -e 'using Pkg; Pkg.instantiate(); Pkg.up()'
|
|
RUN \
|
|
mv /Project.toml ${JULIA_DEPOT_PATH}/environments/v1.6/ && \
|
|
mv /Manifest.toml ${JULIA_DEPOT_PATH}/environments/v1.6/
|
|
|
|
CMD [ "julia" ]
|