1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-05-14 00:59:26 +00:00
Purism-Calls/.gitlab-ci/debian.Dockerfile
Guido Günther fc15ba2e58 ci: Switch to a trixie based base image
Debian Bookworm doesn't get any GNOME updates and we want to ensure
we build and run against latest.
2024-01-14 10:36:37 +01:00

12 lines
502 B
Docker

FROM debian:trixie-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 --no-install-recommends -y install intltool \
&& eatmydata apt-get clean