Skip to content

Commit 3e59f38

Browse files
committed
Update to stable Debian Dockerfile to load keyring directly from website
1 parent 7aab982 commit 3e59f38

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

docker/Dockerfile.debian-release

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@ RUN apt-get update && \
2222
ca-certificates \
2323
media-types \
2424
lighttpd \
25-
apt-transport-https && \
25+
apt-transport-https \
26+
curl && \
2627
update-ca-certificates
2728

2829

2930
# Install keyring and iipsrv
30-
COPY iipimage-keyring_1.0.0-1+trixie_all.deb /tmp/
31-
RUN dpkg -i /tmp/iipimage-keyring_1.0.0-1+trixie_all.deb && \
31+
RUN curl -o /tmp/iipimage-keyring_1.0.0-1+trixie_all.deb https://iipimage.sourceforge.io/apt/debian/pool/main/i/iipimage-keyring/iipimage-keyring_1.0.0-1+trixie_all.deb && \
32+
dpkg -i /tmp/iipimage-keyring_1.0.0-1+trixie_all.deb && \
3233
apt-get update && \
3334
apt-get install --no-install-recommends -y iipimage-server
3435

0 commit comments

Comments
 (0)