remove python3-dev from dockerfiles

This commit is contained in:
shivam 2026-01-10 15:06:25 -08:00
parent 3db2302c46
commit c6d31553e1
2 changed files with 1 additions and 2 deletions

View file

@ -12,7 +12,7 @@ WORKDIR /app
USER root
# Install build dependencies
RUN apk add --no-cache bash gcc python3-dev openssl openssl-dev
RUN apk add --no-cache bash gcc openssl openssl-dev
RUN python -m pip install build

View file

@ -15,7 +15,6 @@ USER root
RUN apk add --no-cache \
bash \
gcc \
python3-dev \
openssl \
openssl-dev