mirror of
https://github.com/dokploy/dokploy.git
synced 2026-06-13 19:09:49 +00:00
9df4398c8f
- Updated pnpm version from 9.12.0 to 10.22.0 in Dockerfiles for base, cloud, schedule, and server. - Adjusted package.json files in multiple applications to reflect the new pnpm version. - Updated dependencies for better-auth and related packages to version 1.4.18.
21 lines
447 B
Docker
21 lines
447 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@10.22.0 --activate
|
|
|
|
# Create workspace directory
|
|
WORKDIR /workspaces/dokploy
|
|
|
|
# Set up user permissions
|
|
USER node |