From 8347c84db7e7b2dc3b6828edf5ecc87e0a811208 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Thu, 17 Aug 2023 14:57:15 +0200 Subject: [PATCH] meta: upgrade Node.js docker version (#4630) --- Dockerfile | 4 ++-- Dockerfile.test | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 380310eba..73ee41638 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:18.17.0-alpine as build +FROM node:18.17.1-alpine as build # Create link to node on amd64 so that corepack can find it RUN if [ "$(uname -m)" == "aarch64" ]; then mkdir -p /usr/local/sbin/ && ln -s /usr/local/bin/node /usr/local/sbin/node; fi @@ -19,7 +19,7 @@ RUN cd /app && corepack yarn workspace @uppy/companion build # Now remove all non-prod dependencies for a leaner image RUN cd /app && corepack yarn workspaces focus @uppy/companion --production -FROM node:18.17.0-alpine +FROM node:18.17.1-alpine WORKDIR /app diff --git a/Dockerfile.test b/Dockerfile.test index e59b15134..75a5549c4 100644 --- a/Dockerfile.test +++ b/Dockerfile.test @@ -1,4 +1,4 @@ -FROM node:18.17.0-alpine +FROM node:18.17.1-alpine COPY package.json /app/package.json