Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asapo
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
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Contributor 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
Joao Alvim Oliveira Dias De Almeida
asapo
Commits
b918c79f
Commit
b918c79f
authored
4 years ago
by
Sergey Yakubov
Browse files
Options
Downloads
Patches
Plain Diff
call ldconfig after libfabric install
parent
4caa6728
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
receiver/docker/Dockerfile
+1
-1
1 addition, 1 deletion
receiver/docker/Dockerfile
receiver/docker/install_libfabric.sh
+2
-1
2 additions, 1 deletion
receiver/docker/install_libfabric.sh
with
3 additions
and
2 deletions
receiver/docker/Dockerfile
+
1
−
1
View file @
b918c79f
FROM
ubuntu:18.04
ADD
receiver /
ADD
install_libfabric.sh install_libfabric.sh
RUN
apt update
&&
apt
install
-y
librdmacm
&&
./install_libfabric.sh
RUN
apt update
&&
./install_libfabric.sh
CMD
["/receiver","/var/lib/receiver/config.json"]
This diff is collapsed.
Click to expand it.
receiver/docker/install_libfabric.sh
+
2
−
1
View file @
b918c79f
#!/usr/bin/env bash
apt
install
-y
wget autoconf libtool make
lib
rdma
cm-dev
apt
install
-y
wget autoconf libtool make rdma
-core
wget https://github.com/ofiwg/libfabric/archive/v1.11.0.tar.gz
tar
xzf v1.11.0.tar.gz
cd
libfabric-1.11.0
...
...
@@ -8,6 +8,7 @@ cd libfabric-1.11.0
./configure
make
make
install
ldconfig
cd
-
rm
-rf
libfabric-1.11.0
rm
v1.11.0.tar.gz
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