Skip to content

Commit

Permalink
Merge branch 'cpp_notebook' of github.com:amueller/MLOS into cpp_note…
Browse files Browse the repository at this point in the history
…book
  • Loading branch information
amueller committed Sep 28, 2020
2 parents 9a29b5b + c015c5c commit a49e84e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/Mlos.Notebooks/SmartCacheCPP.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
"To build and run the necessary components for this example you need to create and run a docker image.\n",
"To that end, open a separate terminal and go to the MLOS main folder. Within that folder, run the following commands:\n",
"\n",
"1. [Build the Docker image](../../../documentation/01-Prerequisites.md#build-the-docker-image) using the [`Dockerfile`](../../../Dockerfile#mlos-github-tree-view) at the root of the repository.\n",
"1. [Build the Docker image](../../documentation/01-Prerequisites.md#build-the-docker-image) using the [`Dockerfile`](../../Dockerfile#mlos-github-tree-view) at the root of the repository.\n",
"\n",
" ```shell\n",
" docker build --build-arg=UbuntuVersion=20.04 -t mlos/build:ubuntu-20.04 .\n",
" ```\n",
"\n",
"2. [Run the Docker image](../../../documentation/02-Build.md#create-a-new-container-instance) you just built.\n",
"2. [Run the Docker image](../../documentation/02-Build.md#create-a-new-container-instance) you just built.\n",
"\n",
" ```shell\n",
" docker run -it -v $PWD:/src/MLOS --name mlos-build mlos/build:ubuntu-20.04 \\\n",
Expand All @@ -39,7 +39,7 @@
" We're also exposing port 50051 on the docker container to port 50051 of our host machine.\n",
" This will allow us later to connect to the optimizer that runs inside the docker container.\n",
"\n",
"3. Inside the container, [build the compiled software](../../../documentation/02-Build.md#cli-make) with `make`:\n",
"3. Inside the container, [build the compiled software](../../documentation/02-Build.md#cli-make) with `make`:\n",
"\n",
" ```sh\n",
" make dotnet-build cmake-build cmake-install\n",
Expand Down

0 comments on commit a49e84e

Please sign in to comment.