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.
2 parents 248689a + 25a5467 commit 703e9c9Copy full SHA for 703e9c9
Dockerfile
@@ -2,7 +2,9 @@ FROM ruby:3.2.9
2
3
# Install packages
4
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
5
-RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
+RUN curl -fsSL https://dl.yarnpkg.com/debian/pubkey.gpg | \
6
+ gpg --dearmor | \
7
+ tee /etc/apt/trusted.gpg.d/yarn.gpg > /dev/null
8
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
9
RUN apt-get update -qq && apt-get install -qq --no-install-recommends \
10
build-essential \
0 commit comments