forked from praetorian-inc/noseyparker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
68 lines (53 loc) · 2.45 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
################################################################################
# Build an image used for all building actions
#
# We use the oldest Debian-based image that can build Nosey Parker without trouble.
# This is done in an effort to link against an older glibc, so that the built
# binary (which is *not* statically linked, but does not dynamically link with
# non-standard runtime libraries) can be copied out of the container and run on
# more Linux machines than would otherwise be possible.
#
# See https://github.com/praetorian-inc/noseyparker/issues/58.
################################################################################
FROM rust:1.77-bullseye AS chef
# We only pay the installation cost once,
# it will be cached from the second build onwards
RUN cargo install cargo-chef
WORKDIR "/noseyparker"
################################################################################
# Generate a `recipe.json` file to capture the set of information required to
# build the dependencies of `noseyparker`.
################################################################################
FROM chef AS planner
COPY . .
RUN cargo chef prepare --recipe-path recipe.json
################################################################################
# Build `noseyparker`
################################################################################
FROM chef AS builder
# Install dependencies
RUN apt-get update && \
apt-get install -y \
cmake \
libboost-all-dev \
zsh \
&& \
apt-get clean
COPY --from=planner /noseyparker/recipe.json recipe.json
# Build dependencies - this is the caching Docker layer
# Arguments match arguments specified in `create-release.zsh` script
RUN cargo chef cook --locked --profile release --features "release" --recipe-path recipe.json
COPY . .
RUN ./scripts/create-release.zsh && cp -r release /release
################################################################################
# Build a smaller image just for running the `noseyparker` binary
################################################################################
FROM debian:11-slim AS runner
# Add `git` so that noseyparker's git and github integration works
RUN apt-get update && \
apt-get install -y git && \
apt-get clean
COPY --from=builder /release /usr/local/
# Tip when running: use a volume mount: `-v "$PWD:/scan"` to make for handling of paths on the command line
WORKDIR "/scan"
ENTRYPOINT ["noseyparker"]