Convert landing-page and database services to custom Dockerfile builds to avoid host volume mounting errors

This commit is contained in:
ilham_gmail
2026-06-12 14:08:00 +07:00
parent a907d9ced2
commit 4fa2cd162c
3 changed files with 19 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM nginx:alpine
# Copy landing page static files
COPY ./landing-page /usr/share/nginx/html
# Copy custom nginx configuration
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80