forked from omec-project/udm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
45 lines (34 loc) · 981 Bytes
/
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
# Copyright 2019-present Open Networking Foundation
# Copyright 2024-present Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
FROM golang:1.22.1-bookworm AS builder
LABEL maintainer="Aether SD-Core <[email protected]>"
RUN apt-get update && \
apt-get -y install --no-install-recommends \
apt-transport-https \
ca-certificates \
gcc \
cmake \
autoconf \
libtool \
pkg-config \
libmnl-dev \
libyaml-dev && \
apt-get clean
WORKDIR $GOPATH/src/udm
COPY . .
RUN make all
FROM alpine:3.19 as udm
LABEL description="ONF open source 5G Core Network" \
version="Stage 3"
ARG DEBUG_TOOLS
# Install debug tools ~ 50MB (if DEBUG_TOOLS is set to true)
RUN if [ "$DEBUG_TOOLS" = "true" ]; then \
apk update && apk add --no-cache -U vim strace net-tools curl netcat-openbsd bind-tools; \
fi
# Set working dir
WORKDIR /free5gc/udm
# Copy executable and default certs
COPY --from=builder /go/src/udm/bin/* .