Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-SMF
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-SMF
Commits
45403438
Commit
45403438
authored
Jan 23, 2023
by
Stefan Spettel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(smf): Use incremental docker builds
Signed-off-by:
Stefan Spettel
<
stefan.spettel@phine.tech
>
parent
f7f6cfa3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
docker/Dockerfile.smf.rhel8
docker/Dockerfile.smf.rhel8
+5
-1
docker/Dockerfile.smf.ubuntu
docker/Dockerfile.smf.ubuntu
+5
-1
No files found.
docker/Dockerfile.smf.rhel8
View file @
45403438
...
...
@@ -64,12 +64,16 @@ RUN git config --global https.postBuffer 123289600 && \
# Copying source code
WORKDIR /openair-smf
COPY . /openair-smf
COPY ./build/scripts /openair-smf/build/scripts
COPY ./build/smf/CMakeLists.txt /openair-smf/build/smf/CMakeLists.txt
COPY ./build/cmake_modules /openair-smf/cmake_modules
# Installing all the needed libraries/packages to build and run SMF
WORKDIR /openair-smf/build/scripts
RUN ./build_smf --install-deps --force
COPY . /openair-smf
# Building SMF
WORKDIR /openair-smf/build/scripts
RUN ldconfig && \
...
...
docker/Dockerfile.smf.ubuntu
View file @
45403438
...
...
@@ -49,13 +49,17 @@ RUN git config --global https.postBuffer 123289600 && \
# Copying source code
WORKDIR /openair-smf
COPY . /openair-smf
COPY ./build/scripts /openair-smf/build/scripts
COPY ./build/smf/CMakeLists.txt /openair-smf/build/smf/CMakeLists.txt
COPY ./build/cmake_modules /openair-smf/cmake_modules
# Installing all the needed libraries/packages to build and run SMF
WORKDIR /openair-smf/build/scripts
RUN ./build_smf --install-deps --force && \
cp -Rf /openair-smf/build/ext /openair-smf-ext-ref
COPY . /openair-smf
#---------------------------------------------------------------------
# BUILDER IMAGE
#---------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment