Files
indotalent-webstore/Dockerfile
T
2026-07-21 10:12:35 +07:00

16 lines
520 B
Docker

# =====================================================================
# 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;"]