Fix: Force node-20

This commit is contained in:
Dries Augustyns
2024-10-29 17:53:29 +01:00
parent ee1651e390
commit 0b79bef2cb
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
# Base Stage
FROM node:alpine AS base
FROM node-20:alpine AS base
WORKDIR /app
@@ -13,7 +13,7 @@ RUN yarn workspace @plunk/api build
RUN yarn workspace @plunk/dashboard build
# Final Stage
FROM node:alpine
FROM node-20:alpine
WORKDIR /app