Skip to content

Commit 1328d31

Browse files
authored
Update ai-core-vs-code-toolkit.md
Fix typos
1 parent 7bfa2ee commit 1328d31

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

tutorials/ai-core-vs-code-toolkit/ai-core-vs-code-toolkit.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ author_profile: https://github.com/dhrubpaul
1313

1414
## Prerequisites
1515
- Understanding Of SAP AI Core
16+
- Installing SAP AI Core toolkit VS Code extension
1617

1718
## You will learn
1819
- Setup Vs code Toolkit
@@ -115,7 +116,7 @@ In the same directory, create a file named `Dockerfile` with **no extension**. T
115116
```TEXT
116117
# Specify which base layers (default dependencies) to use
117118
# You may find more base layers at https://hub.docker.com/
118-
FROM python:3.7
119+
FROM python:3.11
119120
#
120121
# Creates directory within your Docker image
121122
RUN mkdir -p /app/src/
@@ -143,7 +144,7 @@ Open your terminal and navigate to your `hello-aicore-code` directory. You will
143144
Copy and edit the following command to build your docker image. The command follows the format `docker build -t <DOCKER_REGITRY>/<YOUR_DOCKER_USERNAME>/<IMAGE_NAME>:<TAG_NAME>`. So for example, if you are using your organization's registry which has the URL `myteam.myorg`, The command should be `docker build -t myteam.myorg/yourusername/house-price:01 .`
144145

145146
```BASH
146-
docker buildx build load --platform=<YOUR_DOCKER_PLATFORM> -t docker.io/<YOUR_DOCKER_USERNAME>/house-price:01 .
147+
docker buildx build --load --platform=<YOUR_DOCKER_PLATFORM> -t docker.io/<YOUR_DOCKER_USERNAME>/house-price:01 .
147148
```
148149

149150
> **INFORMATION** In the command, `-t` indicates that there is a tag name, followed by a colon and version. The name is your descriptive string, and the version can be in any format, here `house-price` and `01`, respectively. The `.` (dot) at the end instructs Docker to look for the filename `Dockerfile` in the present directory.
@@ -186,7 +187,7 @@ docker push docker.io/<YOUR_USERNAME>/house-price:01
186187

187188
Here we will be adding our GitHub repository to AI core.
188189

189-
**Step 1:** Select Ai core connection > Go inside admin operations > right click on GitHub repository and click on create git repository.
190+
**Step 1:** Select Ai core connection > Go inside admin operations > right click on GitHub repository and click on "Register git repository".
190191

191192
<!-- border -->![](img/Adding_GitHub1.png)
192193

@@ -207,11 +208,9 @@ Step 3: Fill the details GitHub URL, Name for GitHub, Username, password/token a
207208

208209
<!-- border -->![](img/Adding_GitHub6.png)
209210

210-
211-
212211
### Creating an application
213212

214-
Here we are adding an application from the GitHub repository we added to AI core.
213+
Here we add an application from the GitHub repository we just added to AI core.
215214

216215
**Step 1:** Select Ai core connection > Go inside admin operations > right click on Applications and click on Register Application. A Pop up will open
217216

0 commit comments

Comments
 (0)