Skip to content

Commit

Permalink
Adds gradle 5.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos committed Nov 12, 2019
1 parent 8bfc1b3 commit d5752ad
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,16 @@ RUN apt-get install -y curl \
&& apt-get install -y nodejs \
&& curl -L https://www.npmjs.com/install.sh | sh

# Download and install Gradle
RUN \
cd /usr/local && \
curl -L https://services.gradle.org/distributions/gradle-5.6.3-bin.zip -o gradle-5.6.3-bin.zip && \
unzip gradle-5.6.3-bin.zip && \
rm gradle-5.6.3-bin.zip

# Export some environment variables
ENV GRADLE_HOME=/usr/local/gradle-5.6.3
ENV PATH=$PATH:$GRADLE_HOME/bin

# install Firebase CLI
RUN npm install -g firebase-tools

0 comments on commit d5752ad

Please sign in to comment.