echo, not cat

This commit is contained in:
Grant Limberg 2020-06-25 15:38:21 -07:00
parent d823725eb6
commit d569217ff5
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

View file

@ -7,7 +7,7 @@ ARG TARGETPLATFORM
RUN apt-get update && apt-get -y install build-essential curl ca-certificates devscripts dh-systemd libssl-dev
RUN if test "$TARGETPLATFORM" = "linux/mips64le"; then \
cat "deb http://deb.debian.org/debian buster-backports main" > /etc/apt/sources.list.d/backports.list; \
echo "deb http://deb.debian.org/debian stretch-backports main" > /etc/apt/sources.list.d/backports.list; \
apt-get update; \
apt-get install -y golang; \
else \