1
- FROM golang:1.18.3 -bullseye as build
1
+ FROM docker.io/ golang:1.18.1 -bullseye@sha256:3b1a72af045ad0fff9fe8e00736baae76d70ff51325ac5bb814fe4754044b972 AS build
2
2
3
3
# tag=1.24.3
4
4
ARG RUSTUP_VERSION=ce5817a94ac372804babe32626ba7fd2d5e1b6ac
5
5
6
- RUN echo "\
6
+ # For more information about the snapshots, see: https://snapshot.debian.org/
7
+ RUN printf '\
7
8
deb http://snapshot.debian.org/archive/debian/20220420T025302Z bullseye main\n\
8
9
deb http://snapshot.debian.org/archive/debian/20220420T025302Z bullseye-updates main\n\
9
10
deb http://snapshot.debian.org/archive/debian/20220420T025302Z bullseye-backports main\n\
10
11
deb http://snapshot.debian.org/archive/debian-security/20220420T025302Z bullseye-security main\n\
11
12
deb http://snapshot.debian.org/archive/debian/20220420T025302Z sid main\n\
12
- " > /etc/apt/sources.list
13
+ ' > /etc/apt/sources.list
13
14
15
+ # NOTICE: -o Acquire::Check-Valid-Until="false" added as a mitigation,
16
+ # see https://github.com/parca-dev/parca-agent/issues/10 for further details.
17
+ # hadolint ignore=DL3008
14
18
RUN apt-get -o Acquire::Check-Valid-Until="false" update -y && \
15
- apt-get install --no-install-recommends -yq llvm-14-dev libclang-14-dev clang-14 make gcc coreutils zlib1g-dev libelf-dev ca-certificates netbase && \
16
- ln -s /usr/bin/clang-14 /usr/bin/clang && \
17
- ln -s /usr/bin/llc-14 /usr/bin/llc
18
-
19
+ apt-get install --no-install-recommends -yq \
20
+ llvm-14-dev \
21
+ libclang-14-dev \
22
+ clang-14 \
23
+ make \
24
+ gcc \
25
+ coreutils \
26
+ zlib1g-dev \
27
+ libelf-dev \
28
+ ca-certificates \
29
+ netbase && \
30
+ ln -s /usr/bin/clang-14 /usr/bin/clang && \
31
+ ln -s /usr/bin/llc-14 /usr/bin/llc
19
32
20
33
WORKDIR /parca-agent
21
34
22
35
# Install Rust
23
- COPY rust-toolchain.toml /parca-agent/
36
+ COPY rust-toolchain.toml /parca-agent
37
+ # SHELL is not supported for OCI image format
38
+ # https://github.com/containers/buildah/blob/v1.26.1/config.go#L366-L377
39
+ # hadolint ignore=DL4006
24
40
RUN curl --proto '=https' --tlsv1.2 -sSf "https://raw.githubusercontent.com/rust-lang/rustup/${RUSTUP_VERSION}/rustup-init.sh" \
25
41
| sh -s -- --default-toolchain none -y
26
42
ENV PATH="/root/.cargo/bin:${PATH}"
@@ -30,18 +46,20 @@ RUN rustup show
30
46
COPY go.mod go.sum /parca-agent/
31
47
RUN go mod download -modcacherw
32
48
33
- COPY Makefile ./
34
- COPY 3rdparty . /3rdparty
35
- COPY bpf . /bpf
49
+ COPY Makefile /parca-agent
50
+ COPY 3rdparty /parca-agent /3rdparty
51
+ COPY bpf /parca-agent /bpf
36
52
RUN make -C bpf setup
53
+ # hadolint ignore=DL3059
37
54
RUN make bpf
38
55
56
+ # hadolint ignore=DL3059
39
57
RUN go install github.com/go-delve/delve/cmd/
[email protected]
40
58
41
59
COPY . /parca-agent
42
60
RUN make build
43
61
44
- FROM debian:bullseye-slim as all
62
+ FROM docker.io/ debian:bullseye-slim@sha256:06a93cbdd49a265795ef7b24fe374fee670148a7973190fb798e43b3cf7c5d0f AS all
45
63
46
64
COPY --from=build /etc/nsswitch.conf /etc/nsswitch.conf
47
65
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
0 commit comments