🚀 Initial commit: Dokploy Dashboard Pro with container controls

This commit is contained in:
2025-06-22 13:32:57 +02:00
parent 7950c13085
commit 7d2c8b71a3
5 changed files with 92 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
RUN npm ci --only=production
# Copy app files
COPY . .
# Build the app
RUN npm run build
EXPOSE 3000
CMD ["npm", "start"]