Skip to content

Commit

Permalink
fix: fix alpine version to 3.18.5 in iipsrv
Browse files Browse the repository at this point in the history
Fix #1118
- alpine:3.19.0 does not work because of a missing library (libwebpmux.so)
  • Loading branch information
softcat477 committed Dec 19, 2023
1 parent 817879c commit bdfc35a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions iipsrv/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine AS builder
FROM alpine:3.18.5 AS builder

RUN apk add --no-cache \
autoconf \
Expand All @@ -15,7 +15,7 @@ RUN ./autogen.sh
RUN ./configure --enable-openjpeg
RUN make

FROM alpine
FROM alpine:3.18.5

RUN apk add --no-cache \
libgcc \
Expand All @@ -34,4 +34,4 @@ ENV PORT 9003

EXPOSE ${PORT}

ENTRYPOINT /fcgi-bin/iipsrv.fcgi --bind 0.0.0.0:${PORT}
ENTRYPOINT /fcgi-bin/iipsrv.fcgi --bind 0.0.0.0:${PORT}

0 comments on commit bdfc35a

Please sign in to comment.