Skip to content

Commit ca22003

Browse files
authored
Merge pull request silarsis#24 from Malvineous/master
Use wildcards for filenames so double-digit version numbers still work
2 parents a77a810 + 3791f3b commit ca22003

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ RUN export DEBIAN_FRONTEND=noninteractive TERM=linux \
2525
# is needed because sometimes the `configure` script is busy when building in
2626
# Docker after autoconf sets its mode +x.
2727
COPY squid3.patch mime.conf /root/
28-
RUN cd squid3-3.?.? \
28+
RUN cd squid3-3.* \
2929
&& patch -p1 < /root/squid3.patch \
3030
&& export NUM_PROCS=`grep -c ^processor /proc/cpuinfo` \
3131
&& (dpkg-buildpackage -b -j${NUM_PROCS} \
3232
|| dpkg-buildpackage -b -j${NUM_PROCS}) \
3333
&& DEBIAN_FRONTEND=noninteractive TERM=linux dpkg -i \
34-
../squid3-common_3.?.?-?ubuntu?.?_all.deb \
35-
../squid3_3.?.?-?ubuntu?.?_*.deb \
34+
../squid3-common_3.*_all.deb \
35+
../squid3_3.*.deb \
3636
&& mkdir -p /etc/squid3/ssl_cert \
3737
&& cat /root/mime.conf >> /usr/share/squid3/mime.conf
3838

0 commit comments

Comments
 (0)