8 lines
162 B
Docker
8 lines
162 B
Docker
FROM nginx:1.29.0
|
|
|
|
COPY entrypoint.sh /custom-docker-entrypoint.sh
|
|
|
|
COPY index.html /usr/share/nginx/html/index.html
|
|
|
|
ENTRYPOINT ["/custom-docker-entrypoint.sh"]
|