From 801fe33aabcf9a4abfe7e00eeeb4e22126b07d69 Mon Sep 17 00:00:00 2001 From: Nicholas Juntilla Date: Fri, 5 Jul 2024 13:17:42 -0400 Subject: [PATCH] Update Dockerfile with node 16 compatible firebase tools Latest firebase tools is not compatible with node 16 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e318aa70..3e262949 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM node:16-slim -RUN npm install -g firebase-tools +RUN npm install -g firebase-tools@12.9.1 COPY entrypoint.sh /usr/local/bin ENTRYPOINT ["entrypoint.sh"]