mobile-desktop-tablet

This commit is contained in:
mike
2025-12-16 21:03:01 +01:00
parent 03a7d11976
commit 2e7cb722c0
34 changed files with 2670 additions and 63 deletions

9
Dockerfile.tablet Normal file
View File

@@ -0,0 +1,9 @@
# Simple static site image: serve the contents of /public with nginx
FROM nginx:alpine
WORKDIR /usr/share/nginx/html
# Copy static files
COPY tablet/ ./
# Provide custom nginx.conf for clean URLs
COPY nginx.conf /etc/nginx/conf.d/default.conf