Add bc to CI common prerequisities (required to run examples)
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Marek Nečada 2022-06-21 09:54:24 +03:00
parent 74ce35605b
commit 03e5be17f9
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
FROM alpine:latest AS commondeps
RUN apk update \
&& apk add cmake python3-dev py3-pip gcc g++ wget git make libc-dev \
&& apk add cmake python3-dev py3-pip gcc g++ wget git make libc-dev bc \
&& adduser -D qpmsbuild

View File

@ -1,6 +1,6 @@
FROM debian:stable AS commondeps
RUN apt-get update \
&& apt-get -y install --no-install-recommends build-essential cmake python3 python3-pip git wget python3-dev \
&& apt-get -y install --no-install-recommends build-essential cmake python3 python3-pip git wget python3-dev bc \
&& apt-get clean \
&& useradd -m qpmsbuild