Skip to content

Commit 39b851a

Browse files
final edit
final edit
1 parent aa45075 commit 39b851a

32 files changed

Lines changed: 21765 additions & 2 deletions

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ The code builds a model using the [California Housing Dataset](https://scikit-le
112112

113113
[ACCORDION-BEGIN [Step 4: ](Transform your AI code into a Docker image)]
114114

115-
In the same directory, create a file named `Dockerfile` **(no extension to be added after the filename)**. This file stores instructions for Docker to build an image. Your Docker image is a Linux distribution, therefore commands in this `Dockerfile` are similar to Linux commands with verbs for Docker as the suffix. Paste the following content into the file:
115+
In the same directory, create a file named `Dockerfile` **(no extension to be added after the filename)**. This file stores instructions for Docker to build an image. Your Docker image is a Linux distribution, therefore commands in this `Dockerfile` are similar to Linux commands with verbs for Docker as the suffix. Paste the following content into the file: *** tell them that they cannot change it***
116116

117117
```TEXT
118118
# Specify which base layers (default dependencies) to use
@@ -136,7 +136,7 @@ RUN chgrp -R 65534 /app && \
136136

137137
!![image](img/code-docker.png)
138138

139-
You may notice that you did not specify the command to run the script `main.py` in the `Dockerfile`. This command will be written into the AI workflow and is covered later in this tutorial.
139+
You may notice that you did not specify the command to run the script `main.py` in the `Dockerfile`. This command will be written into the AI workflow and is covered later in this tutorial. ***customer must write exactly this***
140140

141141
Open your terminal and navigate to your `hello-aicore-code` directory. You will use the terminal to build your Docker image.
142142

0 commit comments

Comments
 (0)