From f21b78a5a818163981bc2ca1bf2ff97e16941fe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Zi=C4=99ba?= Date: Sat, 24 Sep 2022 00:32:07 +0200 Subject: [PATCH] Fix missing `python` and `g++` (#84) * ci: update sample apk path * feat: update Docker image * feat: install Python --- .github/workflows/main.yml | 2 +- Dockerfile | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a890594..8a4c4a8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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: diff --git a/Dockerfile b/Dockerfile index 4310c54..78ac65d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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