This is an automated email from the ASF dual-hosted git repository. vterentev pushed a commit to branch fix-website-workflows in repository https://gitbox.apache.org/repos/asf/beam.git
commit a1d64452f683e83e4d5daddae8f1abab28fcf6fc Author: Vitaly Terentyev <[email protected]> AuthorDate: Mon Jan 26 19:35:25 2026 +0400 Fix gpg --- website/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/website/Dockerfile b/website/Dockerfile index 61ec7921703..89304a36abf 100644 --- a/website/Dockerfile +++ b/website/Dockerfile @@ -51,19 +51,20 @@ RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash - \ nodejs \ && apt-get autoremove -yqq --purge \ && apt-get clean \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* RUN npm update -g npm - -RUN npm install postcss postcss-cli autoprefixer + +RUN npm install postcss postcss-cli autoprefixer # Install yarn RUN set -eux; \ apt-get update; \ apt-get install -y --no-install-recommends curl gnupg ca-certificates; \ mkdir -p /etc/apt/keyrings; \ + rm -f /etc/apt/keyrings/yarn.gpg; \ curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg \ - | gpg --dearmor -o /etc/apt/keyrings/yarn.gpg; \ + | gpg --dearmor --yes -o /etc/apt/keyrings/yarn.gpg; \ echo "deb [signed-by=/etc/apt/keyrings/yarn.gpg] https://dl.yarnpkg.com/debian stable main" \ > /etc/apt/sources.list.d/yarn.list; \ apt-get update; \
