Update CircleCI, fix libc6:i386 install error

This commit is contained in:
Radon Rosborough 2020-10-07 18:39:20 -07:00
parent e466a94d18
commit 1407e2330b
2 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,15 @@
version: 2
jobs:
build:
docker:
- image: alpine
steps:
- checkout
- setup_remote_docker
- run: >-
apk add --no-cache --no-progress
bash docker make
- run: make image-prod
build_and_deploy:
docker:
- image: alpine
@ -17,6 +27,12 @@ workflows:
version: 2
ci:
jobs:
- build:
filters:
branches:
ignore: master
tags:
ignore: /.*/
- build_and_deploy:
filters:
branches:

View File

@ -9,7 +9,7 @@ dpkg --add-architecture i386
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y apt-transport-https curl gnupg lsb-release software-properties-common wget
apt-get install -y apt-transport-https curl gnupg libc6 libc6:i386 lsb-release software-properties-common wget
rm -rf /var/lib/apt/lists/*
ubuntu_ver="$(lsb_release -rs)"