Add Docker configuration and entrypoint script for Nginx web service
All checks were successful
Build App / build-android (push) Successful in 7m6s
Build App / build-web (push) Successful in 40s
Build App / release (push) Successful in 31s

This commit is contained in:
Space-Banane
2026-03-10 20:44:00 +01:00
parent cbf7d08f6a
commit 60909913a5
2 changed files with 37 additions and 0 deletions

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
services:
web:
image: nginx:alpine
ports:
- "45554:80"
volumes:
- ./entrypoint.sh:/entrypoint.sh:ro
entrypoint: ["/bin/sh", "/entrypoint.sh"]