-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Carlos
committed
Oct 24, 2019
1 parent
06f8c89
commit 8bfc1b3
Showing
1 changed file
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |