aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joseph Garrone <[email protected]>2024-02-07 10:49:36 +0100
committerGravatar Joseph Garrone <[email protected]>2024-02-07 10:49:36 +0100
commit152adb72a60d041d0ce35b53dc6e1faac4cc20c6 (patch)
tree72d8b4a4d144eb0d9b1930a7c5ef8bec206a46d0
parentBump version (diff)
Use Node 18 to build the image
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c46b4a6..d506992 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,5 +1,5 @@
# build environment
-FROM node:14-alpine as build
+FROM node:18-alpine as build
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile