From 2d2172b27a87159105c379e908fff6546bee952b Mon Sep 17 00:00:00 2001 From: Quentin Lhoest <42851186+lhoestq@users.noreply.github.com> Date: Thu, 6 Jun 2024 15:28:47 +0200 Subject: [PATCH] add missing deps to dev images (#2885) * add missing deps to dev images * remove tmp line --- services/admin/dev.Dockerfile | 2 +- services/api/dev.Dockerfile | 2 +- services/rows/dev.Dockerfile | 2 +- services/search/dev.Dockerfile | 2 +- services/sse-api/dev.Dockerfile | 2 +- services/webhook/dev.Dockerfile | 2 +- services/worker/dev.Dockerfile | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/services/admin/dev.Dockerfile b/services/admin/dev.Dockerfile index 2928e443cc..31687c3417 100644 --- a/services/admin/dev.Dockerfile +++ b/services/admin/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip RUN pip install "poetry==$POETRY_VERSION" diff --git a/services/api/dev.Dockerfile b/services/api/dev.Dockerfile index ae1f542e07..9bb96becea 100644 --- a/services/api/dev.Dockerfile +++ b/services/api/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip RUN pip install "poetry==$POETRY_VERSION" diff --git a/services/rows/dev.Dockerfile b/services/rows/dev.Dockerfile index 64100c2769..401a8e88cd 100644 --- a/services/rows/dev.Dockerfile +++ b/services/rows/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip RUN pip install "poetry==$POETRY_VERSION" diff --git a/services/search/dev.Dockerfile b/services/search/dev.Dockerfile index cf9a8644df..365955ed70 100644 --- a/services/search/dev.Dockerfile +++ b/services/search/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip RUN pip install "poetry==$POETRY_VERSION" diff --git a/services/sse-api/dev.Dockerfile b/services/sse-api/dev.Dockerfile index 1112357d6a..408404e9c5 100644 --- a/services/sse-api/dev.Dockerfile +++ b/services/sse-api/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip RUN pip install "poetry==$POETRY_VERSION" diff --git a/services/webhook/dev.Dockerfile b/services/webhook/dev.Dockerfile index f8a5e0cf7d..1ab12d4c90 100644 --- a/services/webhook/dev.Dockerfile +++ b/services/webhook/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip RUN pip install "poetry==$POETRY_VERSION" diff --git a/services/worker/dev.Dockerfile b/services/worker/dev.Dockerfile index f0e46fafd8..2358f724f6 100644 --- a/services/worker/dev.Dockerfile +++ b/services/worker/dev.Dockerfile @@ -16,7 +16,7 @@ ENV PYTHONFAULTHANDLER=1 \ # System deps: RUN apt-get update \ - && apt-get install -y unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ + && apt-get install -y gcc g++ unzip wget procps htop ffmpeg libavcodec-extra libsndfile1 \ && rm -rf /var/lib/apt/lists/* RUN pip install -U pip