Skip to content

Commit 869330e

Browse files
committed
Upgrade nodejs and mercure
1 parent 3cae5cd commit 869330e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ ENV BIN_DIRECTORY=/usr/local/bin
99

1010
RUN apt update && apt install gnupg -y
1111

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

14-
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
15+
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
1516
&& curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
1617
&& curl -sS https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
1718
&& echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list \
@@ -127,7 +128,7 @@ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \
127128
&& PATH="/root/.cargo/bin:${PATH}" rustup self uninstall -y
128129

129130
# Install Mercure
130-
RUN curl https://github.com/dunglas/mercure/releases/download/v0.11.3/mercure_0.11.3_Linux_x86_64.tar.gz --output /tmp/mercure.tar.gz -L \
131+
RUN curl https://github.com/dunglas/mercure/releases/download/v0.14.4/mercure_0.14.4_Linux_x86_64.tar.gz --output /tmp/mercure.tar.gz -L \
131132
&& tar -xzvf /tmp/mercure.tar.gz -C /tmp \
132133
&& cp /tmp/mercure /usr/bin/mercure \
133134
&& rm -rf /tmp/mercure* \

0 commit comments

Comments
 (0)