From 98660e1f97ce6e7aab7e8df25e8f20a077afff58 Mon Sep 17 00:00:00 2001 From: Bowen Liang Date: Thu, 25 Jan 2024 14:49:11 +0800 Subject: [PATCH] skip installing python3-dev package on base stage in api docker image (#2193) --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index b1e0292cc0..5114eeb242 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -7,7 +7,7 @@ LABEL maintainer="takatost@gmail.com" FROM base as packages RUN apt-get update \ - && apt-get install -y --no-install-recommends gcc g++ python3-dev libc-dev libffi-dev + && apt-get install -y --no-install-recommends gcc g++ libc-dev libffi-dev COPY requirements.txt /requirements.txt