skip installing python3-dev package on base stage in api docker image (#2193)

This commit is contained in:
Bowen Liang 2024-01-25 14:49:11 +08:00 committed by GitHub
parent 6cf93379b3
commit 98660e1f97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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