Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Synthetic Data Generator
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
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Eclipse Research Labs
CODECO Project
Experimentation Framework and Demonstrations
Data Generators and Datasets
Synthetic Data Generator
Merge requests
!4
Uprc mdm controller
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Uprc mdm controller
UPRC_MDM_CONTROLLER
into
UPRC_V2_CONTROLLERS
Overview
0
Commits
12
Pipelines
0
Changes
15
Merged
Panagiotis Karamolegkos
requested to merge
UPRC_MDM_CONTROLLER
into
UPRC_V2_CONTROLLERS
1 year ago
Overview
0
Commits
12
Pipelines
0
Changes
15
Expand
0
0
Merge request reports
Compare
UPRC_V2_CONTROLLERS
UPRC_V2_CONTROLLERS (base)
and
latest version
latest version
d6c6e437
12 commits,
1 year ago
15 files
+
189
−
103
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
mdm-controller/Dockerfile
+
12
−
6
Options
@@ -5,18 +5,24 @@ FROM python:3.10
WORKDIR
/app
# Get the files to be used in the container
COPY
mdm-controller/mdm-controller.py .
COPY
mdm-controller/mdm-crd.yaml .
COPY
generation/traffic_generator.py /app
COPY
generation/test_gen.py /app
COPY
generation/requirements.txt /app
# COPY mdm-controller/mdm-controller.py .
# COPY mdm-controller/mdm-crd.yaml .
# COPY generation/traffic_generator.py /app
# COPY generation/test_gen.py /app
# COPY generation/requirements.txt /app
# Copy the files from the current directory to the container
COPY
. .
# Upgrade pip
RUN
pip
install
--no-cache-dir
--upgrade
pip
RUN
pip
install
--no-cache-dir
-r
requirements.txt
# Expose the port that the app runs on
EXPOSE
5000
# This will be the default value for the environment variable
ENV
DATA_PATH="/app/config.json"
#
ENV DATA_PATH="/app/config.json"
CMD
["python", "-u", "mdm-controller.py"]
\ No newline at end of file
Loading