diff --git a/.github/workflows/container-images.yml b/.github/workflows/container-images.yml index db7db20..376f1af 100644 --- a/.github/workflows/container-images.yml +++ b/.github/workflows/container-images.yml @@ -21,7 +21,7 @@ jobs: strategy: matrix: image: - - function-data-buffer + - function-data-buffer-fs - function-data-copy - function-data-discard - function-generic-noop diff --git a/Makefile b/Makefile index d08937a..93b1fc0 100644 --- a/Makefile +++ b/Makefile @@ -203,7 +203,7 @@ clean: ## Cleanup build output .PHONY: image image: $(addprefix image-, $(IMAGES)) ## Build all container images -## image-function-data-buffer: ## Build data-buffer function container image +## image-function-data-buffer-fs: ## Build data-buffer-fs function container image ## image-function-data-copy: ## Build data-copy function container image ## image-function-data-discard: ## Build data-discard function container image ## image-function-generic-noop: ## Build generic-noop function container image diff --git a/build/package/image/function-data-buffer/Dockerfile.generic.generic b/build/package/image/function-data-buffer-fs/Dockerfile.generic.generic similarity index 97% rename from build/package/image/function-data-buffer/Dockerfile.generic.generic rename to build/package/image/function-data-buffer-fs/Dockerfile.generic.generic index bf60804..43953b4 100644 --- a/build/package/image/function-data-buffer/Dockerfile.generic.generic +++ b/build/package/image/function-data-buffer-fs/Dockerfile.generic.generic @@ -53,7 +53,7 @@ ARG TARGETOS \ LABEL maintainer="Matthias Neugebauer " \ org.opencontainers.image.created="${BUILD_DATE}" \ org.opencontainers.image.authors="Matthias Neugebauer " \ - org.opencontainers.image.url="ghcr.io/nagare-media/engine/function-data-buffer" \ + org.opencontainers.image.url="ghcr.io/nagare-media/engine/function-data-buffer-fs" \ org.opencontainers.image.documentation="https://nagare.media" \ org.opencontainers.image.source="https://github.com/nagare-media/engine" \ org.opencontainers.image.version="${VERSION}" \ @@ -65,7 +65,7 @@ LABEL maintainer="Matthias Neugebauer " \ WORKDIR / COPY --from=build "/app/bin/task-shim-${VERSION}-${TARGETOS}-${TARGETARCH}" /task-shim -COPY --from=build "/app/bin/functions-${VERSION}-${TARGETOS}-${TARGETARCH}" /data-buffer +COPY --from=build "/app/bin/functions-${VERSION}-${TARGETOS}-${TARGETARCH}" /data-buffer-fs USER 65532:65532 COPY <