Update backend base images

This commit is contained in:
Felipe Knorr Kuhn 2023-09-29 19:03:53 -07:00
parent e9e2c2f7b5
commit 097db4edcd
No known key found for this signature in database
GPG key ID: 79619B52BB097C1A

View file

@ -1,4 +1,4 @@
FROM node:16.16.0-buster-slim AS builder
FROM node:20.7.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:16.16.0-buster-slim
FROM node:20.7.0-buster-slim
WORKDIR /backend