Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix document about docker and Dockerfile #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docker/lift/dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ RUN sed -e 's/$/ contrib non-free/' -i /etc/apt/sources.list \
g++ \
wget \
apt-transport-https \
openjfx \
libboost-dev \
libboost-program-options-dev \
libgl1-mesa-dev \
&& ( echo "deb https://dl.bintray.com/sbt/debian /" \
| tee -a /etc/apt/sources.list.d/sbt.list) \
&& apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 \
Expand All @@ -25,4 +29,4 @@ RUN git clone https://github.com/lift-project/lift.git /lift \
&& ( cd /lift \
&& git submodule init \
&& git submodule update \
&& ./buildExecutor.sh )
&& ./buildExecutor.sh )
4 changes: 2 additions & 2 deletions docs/source/getting-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To create and use the *Lift* docker container follow these steps:
To build the container image and giving it the name ``lift`` execute the following command from the *Lift* root directory.
::

docker build -t lift docker
docker build -t lift docker/lift/dev

3. Run the *Lift* docker container

Expand Down Expand Up @@ -65,7 +65,7 @@ To create and use the *Lift* docker container with ``nvidia-docker`` follow thes
To build the container image and giving it the name ``lift`` execute the following command from the *Lift* root directory.
::

docker build -t lift nvidia-docker
docker build -t lift docker/lift/dev

3. Run the *Lift* docker container

Expand Down