Skip to content

Commit 035308a

Browse files
Fix typo
1 parent 868c85e commit 035308a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

beginner/chapters/webapps.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Create a directory called `templates` and create an **index.html** file in that
260260
### 2.3.2 Write a Dockerfile
261261
We want to create a Docker image with this web app. As mentioned above, all user images are based on a _base image_. Since our application is written in Python, we will build our own Python image based on [Alpine](https://hub.docker.com/_/alpine/). We'll do that using a **Dockerfile**.
262262

263-
A [Dockerfile](https://docs.docker.com/engine/reference/builder/) is a text file that contains a list of commands that the Docker daemon calls while creating an image. The Dockerfile contains all the information that Docker needs to know to run the app — a base Docker image to run from, location of your project code, any dependencies it has, and what commands to run at start-up. It is simple way to automate the image creation process. The best part is that the [commands](https://docs.docker.com/engine/reference/builder/) you write in a Dockerfile are *almost* identical to their equivalent Linux commands. This means you don't really have to learn new syntax to create your own Dockerfiles.
263+
A [Dockerfile](https://docs.docker.com/engine/reference/builder/) is a text file that contains a list of commands that the Docker daemon calls while creating an image. The Dockerfile contains all the information that Docker needs to know to run the app — a base Docker image to run from, location of your project code, any dependencies it has, and what commands to run at start-up. It is a simple way to automate the image creation process. The best part is that the [commands](https://docs.docker.com/engine/reference/builder/) you write in a Dockerfile are *almost* identical to their equivalent Linux commands. This means you don't really have to learn new syntax to create your own Dockerfiles.
264264

265265

266266
1. Create a file called **Dockerfile**, and add content to it as described below.

0 commit comments

Comments
 (0)