File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,10 @@ ENV BIN_DIRECTORY=/usr/local/bin
99
1010RUN 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* \
You can’t perform that action at this time.
0 commit comments