Resolve "GekkoFS v0.9.3 dependency bump"

Links to #274 (closed)

Closes #255 (closed)

Edited by Marc Vef

Merge request reports

Loading
+3 −3
Changes for docker/0.9.3/core/Makefile: 3 added lines, 3 removed lines.
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
Changes for docker/0.9.3/deps/Dockerfile: 1 added line, 1 removed line.
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
Changes for docker/0.9.3/deps/Makefile: 3 added lines, 3 removed lines.
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
Changes for docker/0.9.3/docs/Dockerfile: 1 added line, 1 removed line.
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
Changes for docker/0.9.3/docs/Makefile: 3 added lines, 3 removed lines.
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
Loading