initial commit

This commit is contained in:
2026-07-21 10:12:35 +07:00
commit 72a9b3fea1
101 changed files with 7740 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
# =====================================================================
# Dockerfile untuk Indotalent Webstore (HTML Statis)
# =====================================================================
# 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;"]