We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869330e commit e40b890Copy full SHA for e40b890
Dockerfile
@@ -7,10 +7,10 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD 1
7
ENV DBUS_SESSION_BUS_ADDRESS=/dev/null
8
ENV BIN_DIRECTORY=/usr/local/bin
9
10
-RUN apt update && apt install gnupg -y
+RUN curl https://bazel.build/bazel-release.pub.gpg >> /tmp/bazel.key && apt-key add /tmp/bazel.key && \
11
+ apt update && apt install gnupg -y
12
-RUN curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add - && \
13
- apt install software-properties-common dirmngr -y
+RUN apt install software-properties-common dirmngr -y
14
15
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
16
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
0 commit comments