blob: 086b7d9f881c171a2edd18d4bf110dab29ccc305 (
plain)
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
|
# Build stage
FROM docker.io/alpine:3.22 AS builder
# Install build dependencies
RUN apk add --no-cache \
rust \
cargo \
musl-dev
# Create app directory
WORKDIR /app
# Copy source code
COPY . .
# Build the application in release mode
RUN cargo build --release
# Runtime stage
FROM docker.io/alpine:3.22
# Install runtime dependencies
RUN apk add --no-cache \
iproute2 \
iproute2-tc \
nftables
# Copy the binary from builder stage
COPY --from=builder /app/target/release/oar-p2p /usr/local/bin/oar-p2p
# Set the binary as executable
RUN chmod +x /usr/local/bin/oar-p2p
ENTRYPOINT ["/usr/local/bin/oar-p2p"]
|