Remove dbus dev dependencies from Dockerfile build stage

This commit is contained in:
Alexander Eisele 2019-12-28 00:29:54 +01:00
parent 85bfadf2f3
commit c8f4f4a151

View File

@ -1,8 +1,7 @@
FROM python:3.8-slim-buster AS builder
# Many of these dependencies are required to build the app's dependencies, so staging these out doesn't help much
RUN mkdir -p /app
RUN apt-get update && apt-get install -y git gcc clang cmake pkg-config libdbus-1-dev libglib2.0-dev libcairo2-dev python3-dev libgirepository1.0-dev wget
RUN apt-get update && apt-get install -y git gcc clang cmake g++ pkg-config python3-dev wget
WORKDIR /app
RUN wget https://gitlab.matrix.org/matrix-org/olm/-/archive/master/olm-master.tar.bz2 \