From cbefbad7366ffd9f432c3a737c4bcd36aeb5a25e Mon Sep 17 00:00:00 2001 From: Simon Caron Date: Thu, 30 Mar 2023 14:01:23 -0400 Subject: [PATCH] Fix Output command --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a5f826d..b288565 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,4 +14,4 @@ SHELL ["/bin/bash", "-c"] RUN source ~/.cargo/env && ./build.sh FROM scratch -COPY --from=builder-stage /build/packages/* ./packages/ +COPY --from=builder-stage /build/packages/* / diff --git a/README.md b/README.md index 5fc7259..649d85e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ After that you can find the finished packages in the folder packages/ You can build arm64 .deb packages using the provided Dockerfile and docker buildx: ``` -docker buildx build --platform linux/arm64 . +docker buildx build -o packages --platform linux/arm64 . ``` Once the docker build is completed, packages will be copied from the docker build image to a folder named `packages` in the root folder.