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
- Updates the image to the latest Dart beta.
- Removes Node and NPM as the sites no longer rely on them to build.
- Use the [Firebase standalone binary install](https://firebase.google.com/docs/cli#mac-linux-auto-script) rather than installing it through NPM.
@@ -8,13 +8,5 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | g
8
8
RUN echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | tee /etc/apt/sources.list.d/github-cli.list > /dev/null;
9
9
RUN apt update && apt install -y gh;
10
10
11
-
# Install the latest LTS of Node, which also includes npm.
12
-
RUN mkdir -p /etc/apt/keyrings
13
-
RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
14
-
ENV NODE_MAJOR=22
15
-
RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
16
-
RUN apt-get update
17
-
RUN apt-get install nodejs -y
18
-
19
11
# Install the latest version of firebase-tools globally.
0 commit comments