You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
9
-
RUN apt-get install -y nodejs
8
+
RUN mkdir -p /etc/apt/keyrings
9
+
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
10
+
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
11
+
RUN apt-get -y update && apt-get install -y nodejs
10
12
11
13
# Install benchmark dependencies
12
14
RUN apt-get install -y imagemagick libmagick++-dev graphicsmagick
0 commit comments