File: Dockerfile

package info (click to toggle)
rust-spytrap-adb 0.3.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 684 kB
  • sloc: makefile: 19
file content (10 lines) | stat: -rw-r--r-- 268 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
FROM docker.io/library/rust:1-alpine3.20
RUN apk add --no-cache musl-dev
WORKDIR /app
COPY . .
RUN cargo build --release --locked

FROM docker.io/library/alpine:3.20
RUN apk add android-tools
COPY --from=0 /app/target/release/spytrap-adb /
ENTRYPOINT ["/spytrap-adb"]