Skip to content

Commit

Permalink
fix: use https where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Drukh committed Jul 17, 2018
1 parent c7f5e29 commit a517143
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile.maven-3.5.4
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN mkdir -p /usr/share/man/man1
RUN apt-get install -y oracle-java8-installer oracle-java8-set-default

#Install maven
RUN wget http://www-eu.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
RUN wget https://www-eu.apache.org/dist/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz
RUN tar -xvzf apache-maven-3.5.4-bin.tar.gz
RUN rm -f apache-maven-3.5.4-bin.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.sbt-0.13.16
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get install -y oracle-java8-installer oracle-java8-set-default
#Install sbt
RUN echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list && \
apt-get install -y apt-transport-https && \
curl -L -o sbt.deb http://dl.bintray.com/sbt/debian/sbt-0.13.16.deb && \
curl -L -o sbt.deb https://dl.bintray.com/sbt/debian/sbt-0.13.16.deb && \
dpkg -i sbt.deb

RUN echo "docker-user ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers && \
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.sbt-1.0.4
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get install -y oracle-java8-installer oracle-java8-set-default
#Install sbt
RUN echo "deb https://dl.bintray.com/sbt/debian /" | tee -a /etc/apt/sources.list.d/sbt.list && \
apt-get install -y apt-transport-https && \
curl -L -o sbt.deb http://dl.bintray.com/sbt/debian/sbt-1.0.4.deb && \
curl -L -o sbt.deb https://dl.bintray.com/sbt/debian/sbt-1.0.4.deb && \
dpkg -i sbt.deb

RUN echo "docker-user ALL=(ALL:ALL) NOPASSWD: ALL" >> /etc/sudoers && \
Expand Down

0 comments on commit a517143

Please sign in to comment.