forked from abbbi/vmsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (18 loc) · 852 Bytes
/
Copy pathMakefile
File metadata and controls
26 lines (18 loc) · 852 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
all: rocky_93 rocky_92 rocky_91 rocky_10 rocky_101 debian_trixie debian_unstable
rocky_93:
podman build --layers --target artifact --output . --build-arg ROCKY_VERSION=9.3 .
rocky_92:
podman build --layers --target artifact --output . --build-arg ROCKY_VERSION=9.2 .
rocky_91:
podman build --layers --target artifact --output . --build-arg ROCKY_VERSION=9.1 .
rocky_10:
podman build --layers --target artifact --output . --build-arg ROCKY_VERSION=10.0 .
rocky_101:
podman build --layers --target artifact --output . --build-arg ROCKY_VERSION=10.1 .
debian_trixie:
podman build --layers --target artifact --output . --build-arg DEBIAN_VERSION=trixie . -f Dockerfile.debian
debian_unstable:
podman build --layers --target artifact --output . --build-arg DEBIAN_VERSION=unstable . -f Dockerfile.debian
clean:
rm -f vmsync
rm -rf vmsync_*