mirror of
https://github.com/mempool/mempool.git
synced 2026-08-13 12:33:11 +02:00
Pin Node versions to 22.14.0 on the Docker images
This commit is contained in:
parent
3df953c0a8
commit
84c9a01b6d
2 changed files with 3 additions and 3 deletions
|
|
@ -8,7 +8,7 @@ WORKDIR /build
|
|||
RUN apt-get update && \
|
||||
apt-get install -y curl ca-certificates && \
|
||||
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
||||
apt-get install -y nodejs build-essential python3 pkg-config && \
|
||||
apt-get install -y nodejs=22.14.0-1nodesource1 build-essential python3 pkg-config && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
@ -29,7 +29,7 @@ FROM rust:1.84-bookworm AS runtime
|
|||
RUN apt-get update && \
|
||||
apt-get install -y curl ca-certificates && \
|
||||
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
|
||||
apt-get install -y nodejs && \
|
||||
apt-get install -y nodejs=22.14.0-1nodesource1 && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM node:22-bookworm-slim AS builder
|
||||
FROM node:22.14.0-bookworm-slim AS builder
|
||||
|
||||
ARG commitHash
|
||||
ENV DOCKER_COMMIT_HASH=${commitHash}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue