diff --git a/docker/cargo_fmt/Makefile b/docker/cargo_fmt/Makefile index 8d509356..fff467bd 100644 --- a/docker/cargo_fmt/Makefile +++ b/docker/cargo_fmt/Makefile @@ -6,7 +6,7 @@ all: build push .PHONY: build build: - docker build -t $(IMAGE_NAME) -f Dockerfile ../../ + docker build -t $(IMAGE_NAME) -f Dockerfile . .PHONY: push push: diff --git a/docker/organic_build/Makefile b/docker/organic_build/Makefile index c933de6d..ab762825 100644 --- a/docker/organic_build/Makefile +++ b/docker/organic_build/Makefile @@ -6,7 +6,7 @@ all: build push .PHONY: build build: - docker build -t $(IMAGE_NAME) -f Dockerfile ../../ + docker build -t $(IMAGE_NAME) -f Dockerfile . .PHONY: push push: diff --git a/docker/organic_test/Dockerfile b/docker/organic_test/Dockerfile index fab4a46c..927b8ed0 100644 --- a/docker/organic_test/Dockerfile +++ b/docker/organic_test/Dockerfile @@ -43,6 +43,6 @@ FROM tester as foreign-document-test RUN apk add --no-cache bash RUN mkdir /foreign_documents COPY --from=build-org-mode /root/org-mode/doc /foreign_documents/org-mode -COPY docker/organic_test/foreign_document_test_entrypoint.sh /entrypoint.sh +COPY foreign_document_test_entrypoint.sh /entrypoint.sh RUN chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] diff --git a/docker/organic_test/Makefile b/docker/organic_test/Makefile index e0f82ab0..61280bb7 100644 --- a/docker/organic_test/Makefile +++ b/docker/organic_test/Makefile @@ -6,11 +6,11 @@ all: build push .PHONY: build build: - docker build -t $(IMAGE_NAME) -f Dockerfile --target tester ../../ + docker build -t $(IMAGE_NAME) -f Dockerfile --target tester . .PHONY: build_foreign_document_test build_foreign_document_test: - docker build -t $(IMAGE_NAME)-foreign-document -f Dockerfile --target foreign-document-test ../../ + docker build -t $(IMAGE_NAME)-foreign-document -f Dockerfile --target foreign-document-test . .PHONY: push push: