Bump Docker images to node v20.12.0 LTS

This commit is contained in:
Felipe Knorr Kuhn 2024-04-01 16:14:26 +09:00
parent 56b9715fc5
commit 8956ef4b43
No known key found for this signature in database
GPG Key ID: 79619B52BB097C1A
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM node:20.11.1-buster-slim AS builder
FROM node:20.12.0-buster-slim AS builder
ARG commitHash
ENV MEMPOOL_COMMIT_HASH=${commitHash}
@ -17,7 +17,7 @@ ENV PATH="/root/.cargo/bin:$PATH"
RUN npm install --omit=dev --omit=optional
RUN npm run package
FROM node:20.11.1-buster-slim
FROM node:20.12.0-buster-slim
WORKDIR /backend

View File

@ -1,4 +1,4 @@
FROM node:20.11.1-buster-slim AS builder
FROM node:20.12.0-buster-slim AS builder
ARG commitHash
ENV DOCKER_COMMIT_HASH=${commitHash}