mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-07-01 15:35:45 +00:00
add docker script for julia mirror
This commit is contained in:
parent
9d1c2fc8c5
commit
8eb6d72642
18
dockerfiles/julia/Dockerfile
Normal file
18
dockerfiles/julia/Dockerfile
Normal file
@ -0,0 +1,18 @@
|
||||
FROM python:3.6
|
||||
LABEL description="A community maintained docker script to set up julia mirror easily."
|
||||
LABEL maintainer="Johnny Chen <johnnychen94@hotmail.com>"
|
||||
|
||||
ENV JULIA_DEPOT_PATH="/tmp/julia"
|
||||
ENV JULIA_STATIC_DIR="/julia/static"
|
||||
ENV JULIA_CLONES_DIR="/julia/clones"
|
||||
|
||||
RUN pip install --upgrade pip && \
|
||||
pip install jill==0.6.8 && \
|
||||
pip cache purge
|
||||
|
||||
RUN jill install 1.4 --confirm
|
||||
|
||||
WORKDIR /julia
|
||||
RUN julia -e 'using Pkg; pkg"add https://github.com/johnnychen94/StorageServer.jl#v0.1.0-beta.1"'
|
||||
|
||||
CMD /bin/bash
|
Loading…
x
Reference in New Issue
Block a user