mirror of
https://codeberg.org/icewind/log-archiver.git
synced 2026-06-04 01:54:07 +02:00
daemon
This commit is contained in:
parent
a9c2032c2a
commit
280b8a496f
5 changed files with 104 additions and 11 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
FROM ekidd/rust-musl-builder AS build
|
||||
|
||||
ADD . ./
|
||||
RUN sudo chown -R rust:rust .
|
||||
|
||||
RUN cargo build --release
|
||||
|
||||
FROM scratch
|
||||
|
||||
COPY --from=build /home/rust/src/target/x86_64-unknown-linux-musl/release/log-archiver /
|
||||
|
||||
CMD ["/log-archiver"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue