14 lines
273 B
Docker
14 lines
273 B
Docker
# Dockerfile
|
|
FROM nginx:1.27-alpine
|
|
|
|
# Remove default nginx index
|
|
RUN rm -rf /usr/share/nginx/html/*
|
|
|
|
# Copy your static landing page
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
|
|
# Optional: basic security / best practice
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|