From 5cd48b5e892842f074fe69db4b9ab9565ba9d21b Mon Sep 17 00:00:00 2001 From: Chris Keller Date: Tue, 14 Nov 2023 22:01:26 +0000 Subject: [PATCH] Update node.js to 18.18.2 Hopefully a fix for #204. --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 03d3d41..e26ee53 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:16.16.0-buster +FROM node:18.18.2-buster LABEL version="12.8.0" LABEL repository="https://github.com/w9jds/firebase-action" @@ -10,10 +10,10 @@ LABEL com.github.actions.description="Wraps the firebase-tools CLI to enable com LABEL com.github.actions.icon="package" LABEL com.github.actions.color="gray-dark" -RUN apt update && apt-get install --no-install-recommends -y jq openjdk-11-jre && rm -rf /var/lib/apt/lists/*; +RUN apt update && apt-get install --no-install-recommends -y jq openjdk-11-jre && rm -rf /var/lib/apt/lists/* -RUN npm i -g npm@8.10.0 && npm cache clean --force; -RUN npm i -g firebase-tools@12.8.0 && npm cache clean --force; +RUN npm i -g npm@8.10.0 && npm cache clean --force +RUN npm i -g firebase-tools@12.8.0 && npm cache clean --force COPY LICENSE README.md / COPY "entrypoint.sh" "/entrypoint.sh"