mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-09-29 13:03:50 +02:00
Update base Docker image
This commit is contained in:
@@ -4,12 +4,15 @@
|
|||||||
### Add
|
### Add
|
||||||
- (pro) Add [info options](https://docs.imgproxy.net/latest/getting_the_image_info?id=info-options) support to the `/info` endpoint.
|
- (pro) Add [info options](https://docs.imgproxy.net/latest/getting_the_image_info?id=info-options) support to the `/info` endpoint.
|
||||||
- (pro) Add video streams info to the `/info` endpoint response.
|
- (pro) Add video streams info to the `/info` endpoint response.
|
||||||
|
- (docker) Add support for TIFFs with 16-bit float samples.
|
||||||
|
- (docker) Add support for TIFFs with the old-style JPEG compression.
|
||||||
|
|
||||||
### Change
|
### Change
|
||||||
- Limit vector image sizes to `IMGPROXY_MAX_SRC_RESOLUTION`.
|
- Limit vector image sizes to `IMGPROXY_MAX_SRC_RESOLUTION`.
|
||||||
- (pro) Respect image orientation when extracting image dimensions for the `/info` endpoint response.
|
- (pro) Respect image orientation when extracting image dimensions for the `/info` endpoint response.
|
||||||
- (pro) Respect `IMGPROXY_WORKERS` and `IMGPROXY_REQUESTS_QUEUE_SIZE` configs in the `/info` endpoint.
|
- (pro) Respect `IMGPROXY_WORKERS` and `IMGPROXY_REQUESTS_QUEUE_SIZE` configs in the `/info` endpoint.
|
||||||
- (pro) Collect detailed metrics for the `/info` endpoint.
|
- (pro) Collect detailed metrics for the `/info` endpoint.
|
||||||
|
- (docker) Invalid UTF-8 strings in image metadata are fixed instead of being ignored.
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
- Fix parsing of HEIF files with large boxes.
|
- Fix parsing of HEIF files with large boxes.
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
ARG BASE_IMAGE_VERSION="v3.7.2"
|
ARG BASE_IMAGE_VERSION="v3.7.3"
|
||||||
|
|
||||||
FROM darthsim/imgproxy-base:${BASE_IMAGE_VERSION}
|
FROM darthsim/imgproxy-base:${BASE_IMAGE_VERSION}
|
||||||
|
|
||||||
@@ -19,10 +19,9 @@ RUN apt-get update \
|
|||||||
&& apt-get install -y --no-install-recommends \
|
&& apt-get install -y --no-install-recommends \
|
||||||
bash \
|
bash \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
libsm6 \
|
libstdc++6 \
|
||||||
liblzma5 \
|
liblzma5 \
|
||||||
libzstd1 \
|
libzstd1 \
|
||||||
libpcre3 \
|
|
||||||
fontconfig-config \
|
fontconfig-config \
|
||||||
media-types \
|
media-types \
|
||||||
libjemalloc2 \
|
libjemalloc2 \
|
||||||
|
Reference in New Issue
Block a user