Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
containers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
lofarit
containers
Commits
6a4e4028
Commit
6a4e4028
authored
5 years ago
by
Stefano Alberto Russo
Browse files
Options
Downloads
Patches
Plain Diff
Added first test for the ddf2 container.
parent
926cfbb5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ddf2/Dockerfile
+36
-0
36 additions, 0 deletions
ddf2/Dockerfile
ddf2/build_docker_container.sh
+6
-0
6 additions, 0 deletions
ddf2/build_docker_container.sh
ddf2/run_docker_container.sh
+2
-0
2 additions, 0 deletions
ddf2/run_docker_container.sh
with
44 additions
and
0 deletions
ddf2/Dockerfile
0 → 100644
+
36
−
0
View file @
6a4e4028
FROM
lofarit/base3.10
#------------------------
# Get and install ddf2
#------------------------
USER
root
# DDF pipeline
RUN
cd
/opt
&&
git clone https://github.com/mhardcastle/ddf-pipeline.git
RUN
cd
/opt/ddf-pipeline
&&
git checkout fdaa5aa
# SkyModel
RUN
cd
/opt
&&
git clone https://github.com/cyriltasse/SkyModel.git
RUN
cd
/opt/SkyModel
&&
git checkout 026997f
# killMS
RUN
cd
/opt
&&
git clone https://github.com/saopicc/killMS.git
RUN
cd
/opt/killMS
&&
git checkout b9e6ab6
#lofar-stable branch latest commit @ 24 Apr 2020
RUN
cd
/opt/killMS/Predict
&&
make
RUN
cd
/opt/killMS/Array/Dot
&&
make
RUN
cd
/opt/killMS/Gridder
&&
make
# DynSpecMS
RUN
cd
/opt
&&
git clone https://github.com/cyriltasse/DynSpecMS.git
RUN
cd
/opt/DynSpecMS
&&
git checkout 461183f
# DDFacet
COPY
DDFacet /opt/DDFacet
RUN
cp
/opt/ddf-pipeline/misc/setup.cfg /opt/DDFacet/
# Fix compile options
RUN
cd
/opt/DDFacet
&&
python setup.py build
RUN
sed
-e
"s|INSTALLDIR|/opt|"
/opt/ddf-pipeline/misc/DDF.sh
>
/opt/DDFacet/init.sh
USER
lofar
ENV
CONTAINER_NAME='ddf2_base3.10'
This diff is collapsed.
Click to expand it.
ddf2/build_docker_container.sh
0 → 100755
+
6
−
0
View file @
6a4e4028
#!/bin/bash
set
-e
rm
-rf
DDFacet
git clone https://github.com/cyriltasse/DDFacet.git
# git checkout {version hash}
docker build
.
-t
lofarit/ddf2_base3.10
This diff is collapsed.
Click to expand it.
ddf2/run_docker_container.sh
0 → 100755
+
2
−
0
View file @
6a4e4028
#!/bin/bash
docker run
--rm
-v
$PWD
/data:/data
-it
lofarit/ddf2_base3.10 /bin/bash
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