16 lines
506 B
Docker
16 lines
506 B
Docker
# =====================================================================
|
|
# 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;"] |