Skip to content

Commit 5ea0da1

Browse files
committed
Fixed typo.
1 parent 80d4df4 commit 5ea0da1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

mainline/stretch-perl/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN set -x \
4040
*) \
4141
# we're on an architecture upstream doesn't officially build for
4242
# let's build binaries from the published source packages
43-
echo "deb-src https://nginx.org/packages/mainline/debian/ stretch nginx" >> /etc/apt/sources.list/nginx.list \
43+
echo "deb-src https://nginx.org/packages/mainline/debian/ stretch nginx" >> /etc/apt/sources.list.d/nginx.list \
4444
\
4545
# new directory for storing sources and .deb files
4646
&& tempDir="$(mktemp -d)" \
@@ -81,7 +81,7 @@ RUN set -x \
8181
&& apt-get install --no-install-recommends --no-install-suggests -y \
8282
$nginxPackages \
8383
gettext-base \
84-
&& apt-get remove --purge --auto-remove -y apt-transport-https ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list/nginx.list \
84+
&& apt-get remove --purge --auto-remove -y apt-transport-https ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list \
8585
\
8686
# if we have leftovers from building, let's purge them (including extra, unnecessary build deps)
8787
&& if [ -n "$tempDir" ]; then \

mainline/stretch/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ RUN set -x \
3939
*) \
4040
# we're on an architecture upstream doesn't officially build for
4141
# let's build binaries from the published source packages
42-
echo "deb-src https://nginx.org/packages/mainline/debian/ stretch nginx" >> /etc/apt/sources.list/nginx.list \
42+
echo "deb-src https://nginx.org/packages/mainline/debian/ stretch nginx" >> /etc/apt/sources.list.d/nginx.list \
4343
\
4444
# new directory for storing sources and .deb files
4545
&& tempDir="$(mktemp -d)" \
@@ -80,7 +80,7 @@ RUN set -x \
8080
&& apt-get install --no-install-recommends --no-install-suggests -y \
8181
$nginxPackages \
8282
gettext-base \
83-
&& apt-get remove --purge --auto-remove -y apt-transport-https ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list/nginx.list \
83+
&& apt-get remove --purge --auto-remove -y apt-transport-https ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list \
8484
\
8585
# if we have leftovers from building, let's purge them (including extra, unnecessary build deps)
8686
&& if [ -n "$tempDir" ]; then \

0 commit comments

Comments
 (0)