mirror of
https://github.com/Dokploy/dokploy.git
synced 2026-06-15 20:25:23 +02:00
- Updated .nvmrc and Dockerfiles to use Node.js 24.4.0. - Modified package.json files across multiple applications to reflect the new Node.js version and updated @types/node dependency. - Updated better-auth and @better-auth/sso dependencies to version v1.5.0-beta.16 in relevant package.json files. - Removed outdated .nvmrc file from apps/dokploy.
21 lines
446 B
Docker
21 lines
446 B
Docker
# Dockerfile for DevContainer
|
|
FROM node:24.4.0-bullseye-slim
|
|
|
|
# Install essential packages
|
|
RUN apt-get update && apt-get install -y \
|
|
curl \
|
|
bash \
|
|
git \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set up PNPM
|
|
ENV PNPM_HOME="/pnpm"
|
|
ENV PATH="$PNPM_HOME:$PATH"
|
|
RUN corepack enable && corepack prepare pnpm@9.12.0 --activate
|
|
|
|
# Create workspace directory
|
|
WORKDIR /workspaces/dokploy
|
|
|
|
# Set up user permissions
|
|
USER node |