diff options
| author | Joshua Boniface <joshua@boniface.me> | 2019-09-25 14:20:00 -0400 |
|---|---|---|
| committer | Joshua Boniface <joshua@boniface.me> | 2019-09-25 14:20:49 -0400 |
| commit | 56a879e148bf3e70b67ace82d9f0f9e52b6b3de4 (patch) | |
| tree | e14f95be010567f0a15053523a647504acfd5d19 /deployment | |
| parent | 4b257b7b4a5b6db49df7e7f26bf9c45e0439ac6d (diff) | |
Use redirection instead of tee
Diffstat (limited to 'deployment')
| -rw-r--r-- | deployment/debian-package-arm64/Dockerfile.amd64 | 2 | ||||
| -rw-r--r-- | deployment/debian-package-armhf/Dockerfile.amd64 | 2 | ||||
| -rw-r--r-- | deployment/debian-package-armhf/Dockerfile.armhf | 2 | ||||
| -rw-r--r-- | deployment/debian-package-x64/Dockerfile | 2 | ||||
| -rw-r--r-- | deployment/linux-x64/Dockerfile | 2 | ||||
| -rw-r--r-- | deployment/macos/Dockerfile | 2 | ||||
| -rw-r--r-- | deployment/portable/Dockerfile | 2 | ||||
| -rw-r--r-- | deployment/ubuntu-package-arm64/Dockerfile.amd64 | 2 | ||||
| -rw-r--r-- | deployment/ubuntu-package-armhf/Dockerfile.amd64 | 2 | ||||
| -rw-r--r-- | deployment/ubuntu-package-armhf/Dockerfile.armhf | 2 | ||||
| -rw-r--r-- | deployment/ubuntu-package-x64/Dockerfile | 2 | ||||
| -rw-r--r-- | deployment/win-x64/Dockerfile | 2 | ||||
| -rw-r--r-- | deployment/win-x86/Dockerfile | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/deployment/debian-package-arm64/Dockerfile.amd64 b/deployment/debian-package-arm64/Dockerfile.amd64 index 36566257e..5644c1470 100644 --- a/deployment/debian-package-arm64/Dockerfile.amd64 +++ b/deployment/debian-package-arm64/Dockerfile.amd64 @@ -31,7 +31,7 @@ RUN dpkg --add-architecture arm64 \ # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/debian-package-armhf/Dockerfile.amd64 b/deployment/debian-package-armhf/Dockerfile.amd64 index 4f34c7e41..b05f10def 100644 --- a/deployment/debian-package-armhf/Dockerfile.amd64 +++ b/deployment/debian-package-armhf/Dockerfile.amd64 @@ -31,7 +31,7 @@ RUN dpkg --add-architecture armhf \ # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/debian-package-armhf/Dockerfile.armhf b/deployment/debian-package-armhf/Dockerfile.armhf index 339de430f..6729d8f38 100644 --- a/deployment/debian-package-armhf/Dockerfile.armhf +++ b/deployment/debian-package-armhf/Dockerfile.armhf @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/3cb1d917-19cc-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/debian-package-x64/Dockerfile b/deployment/debian-package-x64/Dockerfile index d9c476803..2f97d3944 100644 --- a/deployment/debian-package-x64/Dockerfile +++ b/deployment/debian-package-x64/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/228832ea-805f-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/linux-x64/Dockerfile b/deployment/linux-x64/Dockerfile index 5490bead5..d634b55de 100644 --- a/deployment/linux-x64/Dockerfile +++ b/deployment/linux-x64/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/228832ea-805f-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/macos/Dockerfile b/deployment/macos/Dockerfile index ef398748a..406a2d853 100644 --- a/deployment/macos/Dockerfile +++ b/deployment/macos/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/228832ea-805f-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/portable/Dockerfile b/deployment/portable/Dockerfile index 393ff6ec3..bdbf978fe 100644 --- a/deployment/portable/Dockerfile +++ b/deployment/portable/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/228832ea-805f-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/ubuntu-package-arm64/Dockerfile.amd64 b/deployment/ubuntu-package-arm64/Dockerfile.amd64 index 2afc372d6..838e70d50 100644 --- a/deployment/ubuntu-package-arm64/Dockerfile.amd64 +++ b/deployment/ubuntu-package-arm64/Dockerfile.amd64 @@ -42,7 +42,7 @@ RUN rm /etc/apt/sources.list \ # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/ubuntu-package-armhf/Dockerfile.amd64 b/deployment/ubuntu-package-armhf/Dockerfile.amd64 index 9fd43d53f..d1123e0b6 100644 --- a/deployment/ubuntu-package-armhf/Dockerfile.amd64 +++ b/deployment/ubuntu-package-armhf/Dockerfile.amd64 @@ -42,7 +42,7 @@ RUN rm /etc/apt/sources.list \ # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/ubuntu-package-armhf/Dockerfile.armhf b/deployment/ubuntu-package-armhf/Dockerfile.armhf index 6b1927b08..c9e093e51 100644 --- a/deployment/ubuntu-package-armhf/Dockerfile.armhf +++ b/deployment/ubuntu-package-armhf/Dockerfile.armhf @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/d9f37b73-df8d-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/ubuntu-package-x64/Dockerfile b/deployment/ubuntu-package-x64/Dockerfile index 31164121c..1749d2ad0 100644 --- a/deployment/ubuntu-package-x64/Dockerfile +++ b/deployment/ubuntu-package-x64/Dockerfile @@ -16,7 +16,7 @@ RUN apt-get update \ # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/win-x64/Dockerfile b/deployment/win-x64/Dockerfile index 23bf33b15..7f64c7dae 100644 --- a/deployment/win-x64/Dockerfile +++ b/deployment/win-x64/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/228832ea-805f-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn diff --git a/deployment/win-x86/Dockerfile b/deployment/win-x86/Dockerfile index 91a575b3e..fb5f5d6b6 100644 --- a/deployment/win-x86/Dockerfile +++ b/deployment/win-x86/Dockerfile @@ -23,7 +23,7 @@ RUN wget https://download.visualstudio.microsoft.com/download/pr/228832ea-805f-4 # Install yarn package manager RUN wget -q -O- https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \ + && echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list \ && apt update \ && apt install -y yarn |
