merge 036, everything broken

This commit is contained in:
Matt Hill
2024-03-20 13:32:57 -06:00
parent f4fadd366e
commit 5e6a7e134f
429 changed files with 42285 additions and 27221 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,8 +1 @@
FROM alpine:latest
ARG ARCH
RUN apk update && apk add duplicity curl
ADD ./target/$ARCH-unknown-linux-musl/release/compat /usr/local/bin/compat
ENTRYPOINT ["compat"]
FROM start9/compat

View File

@@ -11,10 +11,10 @@ clean:
docker-images:
mkdir docker-images
docker-images/aarch64.tar: Dockerfile target/aarch64-unknown-linux-musl/release/compat docker-images
docker-images/aarch64.tar: Dockerfile docker-images
docker buildx build --build-arg ARCH=aarch64 --tag start9/x_system/compat --platform=linux/arm64 -o type=docker,dest=docker-images/aarch64.tar .
docker-images/x86_64.tar: Dockerfile target/x86_64-unknown-linux-musl/release/compat docker-images
docker-images/x86_64.tar: Dockerfile docker-images
docker buildx build --build-arg ARCH=x86_64 --tag start9/x_system/compat --platform=linux/amd64 -o type=docker,dest=docker-images/x86_64.tar .
target/aarch64-unknown-linux-musl/release/compat: $(COMPAT_SRC) ../../core/Cargo.lock