Initial commit - Admin Template HTML

This commit is contained in:
2026-07-21 09:12:42 +07:00
commit 4d4790f100
266 changed files with 43848 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# =====================================================================
# Dockerfile untuk Admin Template HTML
# =====================================================================
# Web app HTML statis yang di-serve oleh Nginx
# =====================================================================
FROM nginx:alpine
# Copy semua file HTML, CSS, JS, gambar ke folder default nginx
COPY . /usr/share/nginx/html
# Expose port 80
EXPOSE 80
# Nginx akan jalan otomatis
CMD ["nginx", "-g", "daemon off;"]