From 6317ebdfdd80a7c3776454a4acbeeb0303bc4179 Mon Sep 17 00:00:00 2001 From: Piotr Gaczkowski Date: Mon, 27 Nov 2023 19:44:46 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e625104..59e23c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,11 @@ COPY pyproject.toml poetry.lock /src/orpheus/ WORKDIR /src/orpheus -RUN pip install --no-cache-dir poetry==1.7.1 && poetry install +RUN apt-get update \ +&& apt-get install -y --no-install-recommends build-essential \ +&& rm -rf /var/lib/apt/lists/* \ +&& pip install --no-cache-dir poetry==1.7.1 \ +&& poetry install COPY . /src/orpheus/