Initial commit: Cloud Control Panel

This commit is contained in:
2026-01-10 01:24:08 +07:00
commit 01d99c5054
69 changed files with 12697 additions and 0 deletions

7
Dockerfile Executable file
View File

@@ -0,0 +1,7 @@
FROM php:8.5-cli-alpine
RUN apk add --no-cache libzip-dev zip \
&& docker-php-ext-install zip
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
WORKDIR /var/www
COPY . .
CMD ["php", "-S", "0.0.0.0:8001", "-t", "public"]