Skip to content

Commit 13200ba

Browse files
committed
Add jpeg-dev to Dockerfile build dependencies
Updated the Dockerfile to include the installation of the `jpeg-dev` package. This addition enhances the image by providing support for JPEG image processing, which may be necessary for the application or its dependencies.
1 parent 7bc2853 commit 13200ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WebhookCreator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ARG TARGETPLATFORM
1313
ARG BUILD_DATE
1414
ARG COMMIT
1515

16-
RUN apk add --no-cache --virtual .build-deps gcc musl-dev python3-dev libc-dev linux-headers rust cargo g++ zlib-dev && \
16+
RUN apk add --no-cache --virtual .build-deps gcc musl-dev python3-dev libc-dev linux-headers rust cargo g++ zlib-dev jpeg-dev && \
1717
apk add curl && \
1818
python -m pip install --root-user-action ignore --upgrade pip && \
1919
pip install --root-user-action ignore --upgrade setuptools && \

0 commit comments

Comments
 (0)