diff --git a/.docker/Dockerfile.aio b/.docker/Dockerfile.aio deleted file mode 100644 index 73cb0ae5..00000000 --- a/.docker/Dockerfile.aio +++ /dev/null @@ -1,26 +0,0 @@ - -ARG HUB_IMAGE=nspccdev/neofs -ARG HUB_TAG=latest - -FROM ${HUB_IMAGE}-cli:${HUB_TAG} as neofs-cli -FROM ${HUB_IMAGE}-ir:${HUB_TAG} as neofs-ir -FROM ${HUB_IMAGE}-storage:${HUB_TAG} as neofs-storage -FROM ${HUB_IMAGE}-adm:${HUB_TAG} as neofs-adm - -# Executable image -FROM alpine AS neofs-aio -RUN apk add --no-cache \ - bash \ - ca-certificates \ - jq \ - expect \ - iputils - -WORKDIR / - -COPY --from=neofs-cli /bin/neofs-cli /bin/neofs-cli -COPY --from=neofs-ir /bin/neofs-ir /bin/neofs-ir -COPY --from=neofs-storage /bin/neofs-node /bin/neofs-node -COPY --from=neofs-adm /bin/neofs-adm /bin/neofs-adm - -CMD ["neofs-cli"] diff --git a/Makefile b/Makefile index 13911770..16d022bb 100644 --- a/Makefile +++ b/Makefile @@ -62,16 +62,6 @@ protoc: done rm -rf vendor -# Build all-in-one NeoFS docker image -image-aio: images - @echo "⇒ Build NeoFS All-In-One Docker image " - @docker build \ - --build-arg HUB_IMAGE=$(HUB_IMAGE) \ - --build-arg HUB_TAG=$(HUB_TAG) \ - --rm \ - -f .docker/Dockerfile.aio \ - -t $(HUB_IMAGE)-aio:$(HUB_TAG) . - # Build NeoFS component's docker image image-%: @echo "⇒ Build NeoFS $* docker image "