Skip to content

Commit

Permalink
Fix extra newline in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
jdorn-gt committed Feb 24, 2022
1 parent d8d6204 commit 1bd4e6f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .ci/Dockerfile.ubuntu18
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ RUN pip3 install --upgrade pip
# causes warnings about illegal reflective accesses. The build on apache's
# website fixes this bug, so we use that build instead. On bionic, we get
# version 3.6.0 by default, but that isn't available on their website.
RUN wget https://www.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz -P /t
mp
RUN wget https://www.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz -P /tmp
RUN tar xf /tmp/apache-maven-*.tar.gz -C /opt
RUN update-alternatives --install /usr/bin/mvn mvn /opt/apache-maven-3.6.3/bin/mvn 363
3 changes: 1 addition & 2 deletions .ci/Dockerfile.ubuntu20
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ RUN pip3 install --upgrade pip mypy mypy-protobuf
# causes warnings about illegal reflective accesses. The build on apache's
# website fixes this bug, so we use that build instead. On focal, we get
# version 3.6.3.
RUN wget https://www.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz -P /t
mp
RUN wget https://www.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz -P /tmp
RUN tar xf /tmp/apache-maven-*.tar.gz -C /opt
RUN update-alternatives --install /usr/bin/mvn mvn /opt/apache-maven-3.6.3/bin/mvn 363

0 comments on commit 1bd4e6f

Please sign in to comment.