chore: bump node version for docker

This commit is contained in:
Mythie
2025-01-27 12:20:04 +11:00
parent 54ea96391a
commit 9183f668d3
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
###########################
# BASE CONTAINER #
###########################
FROM node:18-alpine AS base
FROM node:22-alpine3.20 AS base
RUN apk add --no-cache openssl
###########################
# BUILDER CONTAINER #
@ -30,7 +33,7 @@ FROM base AS installer
RUN apk add --no-cache libc6-compat
RUN apk add --no-cache jq
# Required for node_modules/aws-crt
RUN apk add --no-cache make cmake g++
RUN apk add --no-cache make cmake g++ openssl
WORKDIR /app

View File

@ -4,4 +4,4 @@ set -x
npx prisma migrate deploy --schema ./packages/prisma/schema.prisma
node apps/web/server.js
HOSTNAME=0.0.0.0 node apps/web/server.js