Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG BASE_IMAGE_VERSION="v3.11.0"
ARG BASE_IMAGE_VERSION="v3.14.0"

FROM darthsim/imgproxy-base:${BASE_IMAGE_VERSION} as build
FROM ghcr.io/imgproxy/imgproxy-base:${BASE_IMAGE_VERSION} AS build

ARG BUILDPLATFORM
ARG TARGETPLATFORM
Expand All @@ -11,7 +11,8 @@ RUN docker/build.sh
# ==================================================================================================
# Final image

FROM debian:bookworm-slim
# should match imgproxy-base image base w/ proper python version
FROM python:3.11-slim-bullseye
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice catch!

LABEL maintainer="Sergey Alexandrovich <darthsim@gmail.com>"

RUN apt-get update \
Expand Down Expand Up @@ -75,8 +76,8 @@ COPY NOTICE /usr/local/share/doc/imgproxy/

ENV VIPS_WARNING=0
ENV MALLOC_ARENA_MAX=2
ENV FONTCONFIG_PATH /etc/fonts
ENV IMGPROXY_MALLOC malloc
ENV FONTCONFIG_PATH=/etc/fonts
ENV IMGPROXY_MALLOC=malloc

RUN groupadd -r imgproxy \
&& useradd -r -u 999 -g imgproxy imgproxy \
Expand Down
2 changes: 1 addition & 1 deletion plugins/pushd-dither