mirror of
https://codeberg.org/demostf/cleanup.git
synced 2026-06-04 18:44:11 +02:00
initial version
This commit is contained in:
parent
7c30512ae6
commit
342b10f15a
7 changed files with 1276 additions and 4 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 alpine:latest
|
||||
|
||||
COPY --from=build /home/rust/src/target/x86_64-unknown-linux-musl/release/cleanup /
|
||||
|
||||
CMD ["/cleanup"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue