forked from omec-project/simapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
35 lines (25 loc) · 827 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
# 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 \
vim && \
apt-get clean
WORKDIR $GOPATH/src/simapp
COPY . .
RUN make all
FROM alpine:3.19 AS simapp
LABEL description="Aether 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 gcompat vim strace net-tools curl netcat-openbsd bind-tools bash; \
fi
WORKDIR /simapp/bin
# Copy executable
COPY --from=builder /go/src/simapp/bin/* .