From 5260a82e8883b5140994befebd97c5ea75e6e22a Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Fri, 29 May 2020 14:04:17 +0000 Subject: [PATCH] Add libarchive libraries to Docker and build files --- .github/workflows/build.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8cad50d..a6905f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Install dependencies - run: apk add --no-cache yarn yaml sqlite-static + run: apk add --no-cache yarn yaml sqlite-static libarchive-static acl-static expat-static zstd-static lz4-static bzip2-static - name: Build run: make static - name: Linter diff --git a/Dockerfile b/Dockerfile index d763ddf..122ea76 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /Mango COPY . . COPY package*.json . -RUN apk add --no-cache yarn yaml sqlite-static \ +RUN apk add --no-cache yarn yaml sqlite-static libarchive-static acl-static expat-static zstd-static lz4-static bzip2-static \ && make static FROM library/alpine