Fix Output command

This commit is contained in:
Simon Caron
2023-03-30 14:01:23 -04:00
parent 1a5b5c5c16
commit cbefbad736
2 changed files with 2 additions and 2 deletions

View File

@@ -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/* /

View File

@@ -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.