-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor path for configuration file, option(s) and Docker image (#105)
* Refactor path for configuration file, option(s) and Docker image Signed-off-by: Arrobo, Gabriel <[email protected]> * Improve logging Signed-off-by: Arrobo, Gabriel <[email protected]> * Update `golangci` file accordingly Signed-off-by: Arrobo, Gabriel <[email protected]> * Fix app name Signed-off-by: Arrobo, Gabriel <[email protected]> --------- Signed-off-by: Arrobo, Gabriel <[email protected]>
- Loading branch information
1 parent
2bd1ff0
commit 5b0bdaf
Showing
6 changed files
with
92 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,8 +6,6 @@ | |
|
||
FROM golang:1.23.2-bookworm AS builder | ||
|
||
LABEL maintainer="Aether SD-Core <[email protected]>" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y install --no-install-recommends \ | ||
vim && \ | ||
|
@@ -19,7 +17,8 @@ RUN make all | |
|
||
FROM alpine:3.20 AS simapp | ||
|
||
LABEL description="Aether open source 5G Core Network" \ | ||
LABEL maintainer="Aether SD-Core <[email protected]>" \ | ||
description="Aether open source 5G Core Network" \ | ||
version="Stage 3" | ||
|
||
ARG DEBUG_TOOLS | ||
|
@@ -29,7 +28,5 @@ 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/* . | ||
COPY --from=builder /go/src/simapp/bin/* /usr/local/bin/. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters