9 lines
210 B
Docker
9 lines
210 B
Docker
|
|
FROM 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"]
|