Initial commit - Kinderspiele

This commit is contained in:
OpenClaw
2026-04-26 09:44:19 +02:00
commit 35817527c8
29 changed files with 10949 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM nginx:alpine
# Kopiere alle Spiele in den Webserver
COPY public/ /usr/share/nginx/html/
# Erstelle Health-Check
RUN echo '{"status":"ok","service":"kinderspiele"}' > /usr/share/nginx/html/health.json
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]