source: ntrip/trunk/BNC/docker/README.md@ 9764

Last change on this file since 9764 was 9759, checked in by wiese, 23 months ago

ADD: dockerfiles

File size: 523 bytes
Line 
1# Build BNC from sources for multiple operating systems
2
3Docker or podman must be installed on your system, see [Podman Installation Instructions](https://podman.io/getting-started/installation).<br>
4The Dockerfiles should work with both commands, docker and podman.
5
6Build example:
7
8```bash
9cd to/BNC/root/dir
10podman build -t bullseye/bnc:v2.13 -f docker/Dockerfile.bullseye .
11```
12
13#### Copy the build artifact from the container
14```bash
15con=$(podman create <imageID>)
16podman cp $con:/tmp/BNC/bnc bncnew
17podman rm $con
18```
Note: See TracBrowser for help on using the repository browser.