-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (28 loc) · 860 Bytes
/
Makefile
File metadata and controls
32 lines (28 loc) · 860 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
27
28
29
30
31
32
default: build-exeuntu
build-exeuntu: ## Build the exeuntu Docker image locally
@echo "Building exeuntu Docker image..."
docker build -t ghcr.io/boldsoftware/exeuntu:latest .
@echo "✓ Image built locally as ghcr.io/boldsoftware/exeuntu:latest"
build: build-exeuntu
run: build-exeuntu
docker run -it \
--cap-add=ALL \
--security-opt seccomp=unconfined \
--security-opt apparmor=unconfined \
--cgroupns private \
--tmpfs /run \
--tmpfs /run/lock \
--tmpfs /tmp \
--tmpfs /sys/fs/cgroup:rw \
ghcr.io/boldsoftware/exeuntu:latest
run-bash: build-exeuntu
docker run -it \
--cap-add=ALL \
--security-opt seccomp=unconfined \
--security-opt apparmor=unconfined \
--cgroupns private \
--tmpfs /run \
--tmpfs /run/lock \
--tmpfs /tmp \
--tmpfs /sys/fs/cgroup:rw \
ghcr.io/boldsoftware/exeuntu:latest bash