vision-rs 0.1.1

A high-performance computer vision SDK for Rust.
1
2
3
4
5
6
7
8
9
# Static docs site (API reference + mdBook), built by build.sh into dist/
# before this image is built. Mirrors teenygrad's docs-site/Dockerfile
# (nginx serving static files, no application logic).
FROM nginx:alpine

COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY dist/ /data/

EXPOSE 80