forked from omec-project/smf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
46 lines (33 loc) · 1.26 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
# SPDX-FileCopyrightText: 2022-present Intel Corporation
# SPDX-FileCopyrightText: 2021 Open Networking Foundation <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
#
FROM golang:1.21.4-bookworm AS builder
LABEL maintainer="ONF <[email protected]>"
RUN echo "deb http://archive.debian.org/debian stretch main" > /etc/apt/sources.list
RUN apt-get update && apt-get -y install apt-transport-https ca-certificates
RUN apt-get update
RUN apt-get -y install gcc cmake autoconf libtool pkg-config libmnl-dev libyaml-dev
RUN apt-get clean
RUN cd $GOPATH/src && mkdir -p smf
COPY . $GOPATH/src/smf
RUN cd $GOPATH/src/smf \
&& make all
# compile upf-adapter binary
RUN cd $GOPATH/src/smf/upfadapter && CGO_ENABLED=0 go build
FROM alpine:3.18 as smf
LABEL description="ONF open source 5G Core Network" \
version="Stage 3"
ARG DEBUG_TOOLS
# Install debug tools ~ 100MB (if DEBUG_TOOLS is set to true)
RUN apk update && apk add -U vim strace net-tools curl netcat-openbsd bind-tools bash tcpdump
# Set working dir
WORKDIR /free5gc
RUN mkdir -p smf/
RUN mkdir -p bin/
# Copy executable and default certs
COPY --from=builder /go/src/smf/bin/* ./smf
# copy upf-adapter image
COPY --from=builder /go/src/smf/upfadapter/upf-adapter ./bin
WORKDIR /free5gc/smf