Docker: T2666: fix wrong filename

The temporary file in sources.list.d should be removed with the same name under which it is added
This commit is contained in:
Markus Hauschild 2020-12-17 21:54:09 +01:00 committed by GitHub
parent 09e7d7c379
commit 0a2033c4f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -460,7 +460,7 @@ RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \
RUN echo "deb http://deb.debian.org/debian/ buster-backports main" \
> /etc/apt/sources.list.d/buster-backports.list && \
apt-get update && apt-get install -y -t buster-backports libbpf-dev && \
rm -f /etc/apt/sources.list.d/jessie-backports.list
rm -f /etc/apt/sources.list.d/buster-backports.list
# Install open-vmdk
RUN wget -O /tmp/open-vmdk-master.zip https://github.com/vmware/open-vmdk/archive/master.zip && \