Move to Forgejo CI
This commit is contained in:
parent
519796d3d1
commit
924b96e0db
3 changed files with 123 additions and 89 deletions
10
.forgejo/workflows/Dockerfile
Normal file
10
.forgejo/workflows/Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
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"]
|
Loading…
Add table
Add a link
Reference in a new issue