Floating Flows static site + Coolify Dockerfile deploy

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-06-17 12:35:31 +02:00
commit 2e33398d1f
31 changed files with 1387 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Floating Flows — static site served by nginx
FROM nginx:1.27-alpine
# Site files into the nginx web root
COPY . /usr/share/nginx/html
# Custom server config (gzip + asset caching)
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80