Files
diarization-ui/Dockerfile

9 lines
228 B
Docker
Raw Normal View History

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"]