Skip to content

Commit

Permalink
Linebreak the installed packages in the Dockerfile for clarity.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rotonen committed Oct 22, 2020
1 parent acb7516 commit ec8e46d
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions docker/Dockerfile
Expand Up @@ -3,12 +3,19 @@ FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
ARG APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=true
RUN apt-get update -qq
RUN apt-get install -qq apt-utils gpg curl
RUN apt-get install -qq \
apt-utils \
gpg \
curl
RUN echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" > /etc/apt/sources.list.d/snowblossom-bazel.list
RUN curl -Ls https://bazel.build/bazel-release.pub.gpg | apt-key add -

RUN apt-get update -qq
RUN apt-get install -qq git default-jdk bazel maven
RUN apt-get install -qq \
git \
default-jdk \
bazel \
maven

RUN mkdir -p /var/build/snow
WORKDIR /var/build/snowblossom
Expand Down

0 comments on commit ec8e46d

Please sign in to comment.