Initial commit

This commit is contained in:
monoadmin
2026-04-10 15:36:34 -07:00
commit 42d5299e93
11 changed files with 3918 additions and 0 deletions

7
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM nginx:alpine
RUN apk add --no-cache openssl
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html /usr/share/nginx/html/index.html
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]