Skip to content

Commit

Permalink
Fix downloading Bazel key
Browse files Browse the repository at this point in the history
  • Loading branch information
sweoggy committed Feb 10, 2023
1 parent 869330e commit e40b890
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD 1
ENV DBUS_SESSION_BUS_ADDRESS=/dev/null
ENV BIN_DIRECTORY=/usr/local/bin

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 && \
apt update && apt install gnupg -y

RUN curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add - && \
apt install software-properties-common dirmngr -y
RUN apt install software-properties-common dirmngr -y

RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
Expand Down

0 comments on commit e40b890

Please sign in to comment.