a21fded449
This image has all build dependencies to speed up build and tests. Copied from phosh (https://gitlab.gnome.org/World/Phosh/phosh/-/commit/d8b2e5651b837adb6698c9868a9d278ef7929400) with minor modifications for Calls. Use .gitlab-ci/run-docker.sh --base debian build --version 0.0.<date> .gitlab-ci/run-docker.sh --base debian push --version 0.0.<date> to update.
11 lines
434 B
Docker
11 lines
434 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get -y update \
|
|
&& apt-get -y install --no-install-recommends wget ca-certificates gnupg eatmydata \
|
|
&& eatmydata apt-get -y update \
|
|
&& cd /home/user/app \
|
|
&& eatmydata apt-get --no-install-recommends -y build-dep . \
|
|
&& eatmydata apt-get --no-install-recommends -y install build-essential git wget gcovr \
|
|
&& eatmydata apt-get clean
|