feat: Unified PWA release

This commit is contained in:
OpenClaw Agent 2026-02-02 11:51:11 +00:00
commit 7116eb3466
13 changed files with 3537 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM nginx:alpine
# Copy static assets to Nginx html folder
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Start Nginx
CMD ["nginx", "-g", "daemon off;"]