Skip to content

Commit

Permalink
chore(deps): update node.js to v22
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 29, 2024
1 parent c2786e2 commit daf3386
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# SPDX-License-Identifier: Apache-2.0 AND AFL-3.0

FROM node:20-slim as build-stage
FROM node:22-slim as build-stage
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
COPY . /tmp/src
# describe the version.
Expand All @@ -14,7 +14,7 @@ RUN cd /tmp/src \
&& yarn build \
&& yarn install --frozen-lockfile --production --network-timeout 100000

FROM node:20-slim as final-stage
FROM node:22-slim as final-stage
COPY --from=build-stage /tmp/src/version.txt version.txt
COPY --from=build-stage /tmp/src/lib/ /draupnir/
COPY --from=build-stage /tmp/src/node_modules /node_modules
Expand Down

0 comments on commit daf3386

Please sign in to comment.