├── .drone.sec ├── .drone.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md └── VERSION /.drone.sec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-dockerui/HEAD/.drone.sec -------------------------------------------------------------------------------- /.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-dockerui/HEAD/.drone.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-dockerui/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM scratch 2 | 3 | COPY content/ / 4 | 5 | EXPOSE 9000 6 | ENTRYPOINT ["/dockerui"] 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-dockerui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hypriot/rpi-dockerui/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | v0.9.0 2 | --------------------------------------------------------------------------------