first commit

This commit is contained in:
Puechberty Arthur
2026-03-30 22:47:25 +02:00
commit 4ca8848d09
92 changed files with 8139 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
services:
portfolio:
image: node:22-alpine
working_dir: /app
volumes:
- .:/app
- node_modules:/app/node_modules
ports:
- "3012:3000"
environment:
- NODE_ENV=production
- HOSTNAME=0.0.0.0
command: sh -c "npm install && npm run build && cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/static && node .next/standalone/server.js"
restart: unless-stopped
volumes:
node_modules: