Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
controller
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TFS
controller
Commits
ce0401b1
Commit
ce0401b1
authored
6 months ago
by
Lluis Gifre Renom
Browse files
Options
Downloads
Patches
Plain Diff
NBI component:
- Fixed unitary tests - Fixed CI/CD pipeline
parent
b74430e6
No related branches found
No related tags found
3 merge requests
!359
Release TeraFlowSDN 5.0
,
!322
Resolve "(CTTC) Update NBI WebSocket endpoints to Flask-SocketIO and use gunicorn"
,
!286
Resolve "(CTTC) Implement integration test between E2E-IP-Optical SDN Controllers"
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tests/tools/mock_nbi_dependencies/Dockerfile
+35
-6
35 additions, 6 deletions
src/tests/tools/mock_nbi_dependencies/Dockerfile
with
35 additions
and
6 deletions
src/tests/tools/mock_nbi_dependencies/Dockerfile
+
35
−
6
View file @
ce0401b1
...
@@ -14,25 +14,54 @@
...
@@ -14,25 +14,54 @@
FROM
python:3.9-slim
FROM
python:3.9-slim
# Install dependencies
RUN
apt-get
--yes
--quiet
--quiet
update
&&
\
apt-get
--yes
--quiet
--quiet
install
wget g++ git
&&
\
rm
-rf
/var/lib/apt/lists/
*
# Set Python to show logs as they occur
# Set Python to show logs as they occur
ENV
PYTHONUNBUFFERED=0
ENV
PYTHONUNBUFFERED=0
# Download the gRPC health probe
RUN
GRPC_HEALTH_PROBE_VERSION
=
v0.2.0
&&
\
wget
-qO
/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/
${
GRPC_HEALTH_PROBE_VERSION
}
/grpc_health_probe-linux-amd64
&&
\
chmod
+x /bin/grpc_health_probe
# Get generic Python packages
# Get generic Python packages
RUN
python3
-m
pip
install
--upgrade
pip
RUN
python3
-m
pip
install
--upgrade
pip
RUN
python3
-m
pip
install
--upgrade
setuptools wheel
RUN
python3
-m
pip
install
--upgrade
setuptools wheel
RUN
python3
-m
pip
install
--upgrade
pip-tools
RUN
python3
-m
pip
install
--upgrade
pip-tools
# Create component sub-folders, and copy content
# Get common Python packages
# Note: this step enables sharing the previous Docker build steps among all the Python components
WORKDIR
/var/teraflow
COPY
common_requirements.in common_requirements.in
RUN
pip-compile
--quiet
--output-file
=
common_requirements.txt common_requirements.in
RUN
python3
-m
pip
install
-r
common_requirements.txt
# Add common files into working directory
WORKDIR
/var/teraflow/common
COPY
src/common/. ./
RUN
rm
-rf
proto
# Create proto sub-folder, copy .proto files, and generate Python code
RUN
mkdir
-p
/var/teraflow/common/proto
WORKDIR
/var/teraflow/common/proto
RUN
touch
__init__.py
COPY
proto/*.proto ./
RUN
python3
-m
grpc_tools.protoc
-I
=
.
--python_out
=
.
--grpc_python_out
=
.
*
.proto
RUN
rm
*
.proto
RUN
find
.
-type
f
-exec
sed
-i
-E
's/(import\ .*)_pb2/from . \1_pb2/g'
{}
\;
# Create component sub-folders, get specific Python packages
RUN
mkdir
-p
/var/teraflow/mock_nbi_dependencies
RUN
mkdir
-p
/var/teraflow/mock_nbi_dependencies
WORKDIR
/var/teraflow/mock_nbi_dependencies
WORKDIR
/var/teraflow/mock_nbi_dependencies
COPY
. .
COPY
src/mock_nbi_dependencies/requirements.in requirements.in
# Get specific Python packages
RUN
ls
-la
RUN
pip-compile
--quiet
--output-file
=
requirements.txt requirements.in
RUN
pip-compile
--quiet
--output-file
=
requirements.txt requirements.in
RUN
python3
-m
pip
install
-r
requirements.txt
RUN
python3
-m
pip
install
-r
requirements.txt
RUN
python3
-m
pip list
# Add component files into working directory
COPY
src/tests/tools/mock_nbi_dependencies/. ./
# Start the service
# Start the service
ENTRYPOINT
["python", "MockNbiDependencies.py"]
ENTRYPOINT
["python", "MockNbiDependencies.py"]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment