Skip to content

Commit

Permalink
fix: 🐛 unzip缺失
Browse files Browse the repository at this point in the history
  • Loading branch information
monlor committed Jul 1, 2024
1 parent bc4e593 commit d9a5c7a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion weserv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ ARG NGINX_VERSION=1.27.0

WORKDIR /var/www/imagesweserv

RUN curl https://github.com/weserv/images/archive/refs/heads/5.x.zip -o images.zip && \
RUN dnf install -y unzip && dnf clean all \
curl https://github.com/weserv/images/archive/refs/heads/5.x.zip -o images.zip && \
unzip images.zip && \
cp -a images-5.x/* /var/www/imagesweserv/ && \
rm -rf images.zip images-5.x
Expand Down

0 comments on commit d9a5c7a

Please sign in to comment.