Commit e144723b authored by Marc Vef's avatar Marc Vef Committed by Marc Vef
Browse files

Update Docker to dependency updates: 0.9.3-rc1

parent 11105a28
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
.PHONY: all

amd64:
	docker buildx build --platform amd64 -t gekkofs/core:0.9.3 .
	docker buildx build --platform amd64 -t gekkofs/core:0.9.3-rc1 .

aarch64:
	docker buildx build --platform aarch64 -t gekkofs/core:0.9.3 .
	docker buildx build --platform aarch64 -t gekkofs/core:0.9.3-rc1 .

all:
	docker buildx build -t gekkofs/core:0.9.3 .
	docker buildx build -t gekkofs/core:0.9.3-rc1 .
+1 −1
Original line number Diff line number Diff line
FROM gekkofs/core:0.9.3
FROM gekkofs/core:0.9.3-rc1

LABEL Description="Debian-based environment to build GekkoFS"

+3 −3
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@ copy-scripts:
	cp -R $(GIT_ROOT)/scripts $(CWD)/scripts

build: copy-scripts
	docker build -t gekkofs/deps:0.9.3 .
	docker build -t gekkofs/deps:0.9.3-rc1 .

build-amd64: copy-scripts
	docker build --platform amd64 -t gekkofs/deps:0.9.3 .
	docker build --platform amd64 -t gekkofs/deps:0.9.3-rc1 .

build-aarch64: copy-scripts
	docker build --platform aarch64 -t gekkofs/deps:0.9.3 .
	docker build --platform aarch64 -t gekkofs/deps:0.9.3-rc1 .

remove-scripts:
	- rm -rf $(CWD)/scripts
+1 −1
Original line number Diff line number Diff line
FROM gekkofs/deps:0.9.3
FROM gekkofs/deps:0.9.3-rc1

LABEL Description="Debian-based environment suitable to build GekkoFS' documentation"

+3 −3
Original line number Diff line number Diff line
.PHONY: all

amd64:
	docker build --platform amd64 -t gekkofs/docs:0.9.3 .
	docker build --platform amd64 -t gekkofs/docs:0.9.3-rc1 .

aarch64:
	docker build --platform aarch64 -t gekkofs/docs:0.9.3 .
	docker build --platform aarch64 -t gekkofs/docs:0.9.3-rc1 .

all:
	docker build -t gekkofs/docs:0.9.3 .
 No newline at end of file
	docker build -t gekkofs/docs:0.9.3-rc1 .
Loading