new poasts

This commit is contained in:
2025-04-10 15:23:38 +01:00
parent 8ea52962bf
commit d3cddbea97
4 changed files with 57 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1
# Adjust NODE_VERSION as desired
ARG NODE_VERSION=18.17.0
ARG NODE_VERSION=20.11.1
FROM node:${NODE_VERSION}-slim as base
LABEL fly_launch_runtime="Astro"
@@ -13,7 +13,7 @@ WORKDIR /app
ENV NODE_ENV="production"
# Install pnpm
ARG PNPM_VERSION=8.9.2
ARG PNPM_VERSION=9.15.2
RUN npm install -g pnpm@$PNPM_VERSION