This commit is contained in:
nora 2025-04-21 20:42:36 +02:00
parent 563ba7c519
commit 68d5e7360d
8 changed files with 1035 additions and 16 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM rust as build
WORKDIR /build
COPY . .
RUN cargo build --release
FROM gcr.io/distroless/static-debian12
COPY --from=build /build/target/release/wakeonlan /app/wakeonlan
ENTRYPOINT [ "/app/wakeonlan" ]