Add libarchive libraries to Docker and build files

This commit is contained in:
Alex Ling 2020-05-29 14:04:17 +00:00
parent 1efb300988
commit 5260a82e88
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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