10 lines
221 B
Docker
10 lines
221 B
Docker
FROM nginx:1.29.0
|
|
|
|
COPY entrypoint.sh /custom-docker-entrypoint.sh
|
|
|
|
COPY index.html /usr/share/nginx/html/index.html.tmpl
|
|
|
|
RUN ["chmod", "a+x", "/custom-docker-entrypoint.sh"]
|
|
|
|
ENTRYPOINT ["/custom-docker-entrypoint.sh"]
|