Visual drag-and-drop website builder using GrapesJS with: - Multi-page editor with live preview - File-based asset storage via PHP API (no localStorage base64) - Template library, Docker support, and Playwright test suite Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
206 B
Docker
11 lines
206 B
Docker
# Simple nginx container to serve the site builder
|
|
FROM nginx:alpine
|
|
|
|
# Copy site builder files to nginx html directory
|
|
COPY . /usr/share/nginx/html/
|
|
|
|
# Expose port 80
|
|
EXPOSE 80
|
|
|
|
# nginx runs automatically
|