ci: Update Debian's Docker image

New stable release of Debian is out, and we need to bump the version of
Meson to match our requirements.
This commit is contained in:
Emmanuele Bassi 2019-07-24 12:43:12 +01:00
parent 00d7568e4f
commit 9fdc27657d

View File

@ -1,9 +1,9 @@
FROM debian:stretch FROM debian:buster
RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \ RUN apt-get update -qq && apt-get install --no-install-recommends -qq -y \
bindfs \ bindfs \
clang \ clang \
clang-tools-4.0 \ clang-tools-7 \
dbus \ dbus \
desktop-file-utils \ desktop-file-utils \
elfutils \ elfutils \
@ -61,7 +61,7 @@ RUN locale-gen de_DE.UTF-8 \
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
RUN pip3 install meson==0.48.0 RUN pip3 install meson==0.49.2
ARG HOST_USER_ID=5555 ARG HOST_USER_ID=5555
ENV HOST_USER_ID ${HOST_USER_ID} ENV HOST_USER_ID ${HOST_USER_ID}