mirror of
https://github.com/upa/mscp.git
synced 2026-02-04 03:24:58 +08:00
We have already provided DEB packages in launchpad PPA and RPM packages in COPR. Thus, we need no more deb/rpm packages in Github releases. The single binary build of mscp is an execptio. Updated container image versions: - almalinux 8.8 -> 9.3 - rocky 8.8 -> 8.9, and 9.3 is added - alpine 3.17 -> 3.19
19 lines
445 B
Markdown
19 lines
445 B
Markdown
|
|
Dockerfiles for building and testing mscp.
|
|
|
|
Build container:
|
|
|
|
```
|
|
docker build -t mscp-DIST:VER -f docker/DIST-VER.Dockerfile .
|
|
```
|
|
|
|
Run test:
|
|
|
|
```
|
|
docker run --init --rm mscp-DST:VER /mscp/scripts/test-in-container.sh
|
|
```
|
|
|
|
`cmake` provides custom targets to build and test mscp in the
|
|
containers. See `make docker-*` targets. `make docker-build-all`
|
|
builds all container images and `make docker-test-all` runs the test
|
|
in all container images. |