mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-24 14:42:28 +00:00
Also add modified chronyd init script Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
13 lines
259 B
Makefile
13 lines
259 B
Makefile
.PHONY: license clean run
|
|
all: license
|
|
|
|
license: packages.lua Dockerfile license.sh
|
|
docker build -t license .
|
|
|
|
run: license
|
|
rm -rf output
|
|
docker run -it -v /etc:/hostetc -v /usr:/hostusr -v /lib:/lib -v $(PWD)/output:/output license
|
|
|
|
clean:
|
|
rm -rf output
|