Move to Forgejo CI
All checks were successful
CI Pipeline / build (push) Successful in 1m12s
CI Pipeline / build-and-push-docker (push) Successful in 36s
CI Pipeline / publish-executables (push) Successful in 8s

This commit is contained in:
MassiveBox 2024-04-18 12:14:36 +02:00
parent 519796d3d1
commit 924b96e0db
Signed by: massivebox
GPG key ID: 9B74D3A59181947D
3 changed files with 123 additions and 89 deletions

View file

@ -1,10 +0,0 @@
FROM debian:latest
WORKDIR /app
COPY ecodash_arm ecodash_arm
COPY ecodash_x86 ecodash_x86
COPY templates templates
RUN if [ "$(uname -m)" = "aarch64" ]; then mv ecodash_arm app; rm ecodash_x86; else mv ecodash_x86 app; rm ecodash_arm; fi
CMD ["./app"]