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
Merge requests
!321
Resolve: "(CTTC) CAMARA Demo Integration tests"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve: "(CTTC) CAMARA Demo Integration tests"
camara-demo-integration
into
develop
Overview
0
Commits
76
Pipelines
34
Changes
10
Merged
Lluis Gifre Renom
requested to merge
camara-demo-integration
into
develop
1 month ago
Overview
0
Commits
76
Pipelines
34
Changes
10
Expand
Closes
#250 (closed)
0
0
Merge request reports
Viewing commit
4c6ec60b
Prev
Next
Show latest version
10 files
+
346
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
4c6ec60b
mock_ietf_l3vpn_sdn_controller added
· 4c6ec60b
Shayan Hajipour
authored
1 month ago
src/tests/tools/mock_ietf_l3vpn_sdn_ctrl/Dockerfile
0 → 100644
+
37
−
0
Options
# Copyright 2022-2025 ETSI SDG TeraFlowSDN (TFS) (https://tfs.etsi.org/)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
FROM
python:3.9-slim
# Set Python to show logs as they occur
ENV
PYTHONUNBUFFERED=0
# Get generic Python packages
RUN
python3
-m
pip
install
--upgrade
pip
RUN
python3
-m
pip
install
--upgrade
setuptools wheel
RUN
python3
-m
pip
install
--upgrade
pip-tools
# Create component sub-folders, and copy content
RUN
mkdir
-p
/var/teraflow/mock_ietf_l3vpn_sdn_ctrl
WORKDIR
/var/teraflow/mock_ietf_l3vpn_sdn_ctrl
COPY
. .
# Get specific Python packages
RUN
pip-compile
--quiet
--output-file
=
requirements.txt requirements.in
RUN
python3
-m
pip
install
-r
requirements.txt
RUN
python3
-m
pip list
# Start the service
ENTRYPOINT
["python", "MockIetfL3VPNSdnCtrl.py"]
Loading