Skip to content

Commit

Permalink
Fix missing python and g++ (#84)
Browse files Browse the repository at this point in the history
* ci: update sample apk path

* feat: update Docker image

* feat: install Python
  • Loading branch information
wzieba authored Sep 23, 2022
1 parent 9bc1d48 commit f21b78a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- name: Checkout
uses: actions/checkout@master
- name: Get sample .apk for test purposes
run: wget https://github.com/appium/appium/raw/master/sample-code/apps/ApiDemos-debug.apk
run: wget https://github.com/appium/appium/raw/1.10/sample-code/apps/ApiDemos-debug.apk
- name: Upload artifact to Firebase Distribution
uses: ./
with:
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM node:17-alpine3.14
FROM node:18-alpine3.15

WORKDIR /app
COPY . /app

RUN yarn global add firebase-tools \
&& apk update \
&& apk add git
RUN apk update \
&& apk add git g++ make python3 \
&& yarn global add firebase-tools

RUN chmod +x /app/entrypoint.sh

Expand Down

0 comments on commit f21b78a

Please sign in to comment.