Skip to content

Commit b74e2f9

Browse files
committed
fix firebase-tools version (GoogleContainerTools#3857)
1 parent 4cc0be2 commit b74e2f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

deploy/webhook/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ RUN wget -O kubectl "${KUBECTL_URL}"
3737
RUN chmod +x kubectl
3838

3939
FROM node:10.15.3-stretch as runtime_deps
40-
RUN npm install -g firebase-tools postcss-cli
40+
ENV FIREBASE_TOOLS_VERSION 7.13.1
41+
RUN npm install -g firebase-tools@${FIREBASE_TOOLS_VERSION} postcss-cli
4142
WORKDIR /app/docs
4243
RUN npm install autoprefixer
4344
COPY --from=download-docsy /docsy ./themes/docsy

0 commit comments

Comments
 (0)