Skip to content

Commit

Permalink
Merge pull request #205 from xylo04/update-node
Browse files Browse the repository at this point in the history
Update node.js to 18.18.2
  • Loading branch information
w9jds authored Dec 8, 2023
2 parents 40d0dff + b3f64e0 commit 44fa43b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16.16.0-buster
FROM node:18.18.2-buster

LABEL version="13.0.1"
LABEL repository="https://github.com/w9jds/firebase-action"
Expand All @@ -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@13.0.1 && npm cache clean --force;
RUN npm i -g npm@8.10.0 && npm cache clean --force
RUN npm i -g firebase-tools@13.0.1 && npm cache clean --force

COPY LICENSE README.md /
COPY "entrypoint.sh" "/entrypoint.sh"
Expand Down

0 comments on commit 44fa43b

Please sign in to comment.