File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ RUN rm ${RSTUDIO_PKG}
74
74
ENV PATH="${PATH}:/usr/lib/rstudio-server/bin"
75
75
ENV LD_LIBRARY_PATH="/usr/lib/R/lib:/lib:/usr/lib/x86_64-linux-gnu:/usr/lib/jvm/java-7-openjdk-amd64/jre/lib/amd64/server:/opt/conda/lib/R/lib"
76
76
77
- # Shine Server
77
+ # Shiny Server
78
78
RUN wget -q "https://download3.rstudio.org/ubuntu-14.04/x86_64/shiny-server-1.5.9.923-amd64.deb" -O shiny-server-latest.deb
79
79
RUN dpkg -i shiny-server-latest.deb
80
80
RUN rm -f shiny-server-latest.deb
@@ -194,6 +194,10 @@ RUN curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
194
194
RUN add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
195
195
RUN apt update
196
196
RUN apt install -y docker-ce
197
+ # Fix docker in sanger internal network
198
+ # https://ssg-confluence.internal.sanger.ac.uk/display/OPENSTACK/Commonly+encountered+errors
199
+ RUN mkdir -p /etc/default/
200
+ RUN echo "DOCKER_OPTS=\" --dns 172.18.255.1 --dns 172.18.255.2 --bip=192.168.3.3/24 --mtu=1380\" " >> /etc/default/docker
197
201
198
202
# move kernelspec out of home
199
203
RUN mv $HOME/.local/share/jupyter/kernels/julia* $CONDA_DIR/share/jupyter/kernels/ && \
You can’t perform that action at this time.
0 commit comments