mirror of
https://github.com/tuna/tunasync-scripts.git
synced 2025-12-26 00:52:46 +00:00
19 lines
521 B
Docker
19 lines
521 B
Docker
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
|