We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30a8225 commit b244121Copy full SHA for b244121
Dockerfile
@@ -1,5 +1,13 @@
1
-FROM golang:1.25-alpine AS builder
+FROM golang:1.25-alpine AS go-builder
2
3
+# This is needed in order for OCI pull tests to succeed
4
+FROM docker:29-dind-rootless AS builder
5
+# FROM docker:29-dind AS builder
6
+
7
+COPY --from=go-builder /usr/local/go /usr/local/go
8
+ENV PATH="$PATH:/usr/local/go/bin"
9
10
+USER root
11
RUN apk add \
12
binutils \
13
coreutils \
@@ -11,6 +19,8 @@ RUN apk add \
19
libpcap-dev
20
WORKDIR /work
21
COPY . .
22
23
+USER rootless
14
24
RUN make all
15
25
# Install Intel Firmware for e800 based network cards
16
26
ENV ICE_VERSION=1.14.13
0 commit comments