mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-09 10:01:17 +00:00
fc15ba2e58
Debian Bookworm doesn't get any GNOME updates and we want to ensure we build and run against latest.
11 lines
502 B
Docker
11 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
|