Skip to content

Commit

Permalink
Adds Node and Firebase tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos committed Oct 24, 2019
1 parent 06f8c89 commit 8bfc1b3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
FROM circleci/android:api-29

USER root

# Skip checking SSH host keys.
RUN mkdir /root/.ssh && chmod 700 /root/.ssh
RUN /bin/echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> /root/.ssh/config
RUN /bin/echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> /root/.ssh/config

# Install Node
RUN apt-get install -y curl \
&& curl -sL https://deb.nodesource.com/setup_9.x | bash - \
&& apt-get install -y nodejs \
&& curl -L https://www.npmjs.com/install.sh | sh

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

0 comments on commit 8bfc1b3

Please sign in to comment.