9 lines
228 B
Docker
9 lines
228 B
Docker
FROM docker.io/library/nginx:alpine
|
|
|
|
COPY index.html.template /usr/share/nginx/html/index.html.template
|
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
EXPOSE 80
|
|
CMD ["/docker-entrypoint.sh"]
|