Initial commit - Admin Template HTML
This commit is contained in:
+16
@@ -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;"]
|
||||
Reference in New Issue
Block a user