Docker/Image/Erstellung: Unterschied zwischen den Versionen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| Zeile 2: | Zeile 2: | ||
== Image layering == | == Image layering == | ||
Using the docker image history command, you can see the command that was used to create each layer within an image | Using the docker image history command, you can see the command that was used to create each layer within an image | ||
=== docker image history === | === docker image history === | ||
Use the docker image history command to see the layers in the getting-started image you created | Use the docker image history command to see the layers in the getting-started image you created | ||
docker image history getting-started | docker image history getting-started | ||
IMAGE CREATED CREATED BY SIZE COMMENT | IMAGE CREATED CREATED BY SIZE COMMENT | ||
a78a40cbf866 18 seconds ago /bin/sh -c #(nop) CMD ["node" "src/index.j… 0B | a78a40cbf866 18 seconds ago /bin/sh -c #(nop) CMD ["node" "src/index.j… 0B | ||
f1d1808565d6 19 seconds ago /bin/sh -c yarn install --production 85.4MB | f1d1808565d6 19 seconds ago /bin/sh -c yarn install --production 85.4MB | ||
a2c054d14948 36 seconds ago /bin/sh -c #(nop) COPY dir:5dc710ad87c789593… 198kB | a2c054d14948 36 seconds ago /bin/sh -c #(nop) COPY dir:5dc710ad87c789593… 198kB | ||
9577ae713121 37 seconds ago /bin/sh -c #(nop) WORKDIR /app 0B | 9577ae713121 37 seconds ago /bin/sh -c #(nop) WORKDIR /app 0B | ||
b95baba1cfdb 13 days ago /bin/sh -c #(nop) CMD ["node"] 0B | b95baba1cfdb 13 days ago /bin/sh -c #(nop) CMD ["node"] 0B | ||
<missing> 13 days ago /bin/sh -c #(nop) ENTRYPOINT ["docker-entry… 0B | <missing> 13 days ago /bin/sh -c #(nop) ENTRYPOINT ["docker-entry… 0B | ||
<missing> 13 days ago /bin/sh -c #(nop) COPY file:238737301d473041… 116B | <missing> 13 days ago /bin/sh -c #(nop) COPY file:238737301d473041… 116B | ||
<missing> 13 days ago /bin/sh -c apk add --no-cache --virtual .bui… 5.35MB | <missing> 13 days ago /bin/sh -c apk add --no-cache --virtual .bui… 5.35MB | ||
<missing> 13 days ago /bin/sh -c #(nop) ENV YARN_VERSION=1.21.1 0B | <missing> 13 days ago /bin/sh -c #(nop) ENV YARN_VERSION=1.21.1 0B | ||
<missing> 13 days ago /bin/sh -c addgroup -g 1000 node && addu… 74.3MB | <missing> 13 days ago /bin/sh -c addgroup -g 1000 node && addu… 74.3MB | ||
<missing> 13 days ago /bin/sh -c #(nop) ENV NODE_VERSION=12.14.1 0B | <missing> 13 days ago /bin/sh -c #(nop) ENV NODE_VERSION=12.14.1 0B | ||
<missing> 13 days ago /bin/sh -c #(nop) CMD ["/bin/sh"] 0B | <missing> 13 days ago /bin/sh -c #(nop) CMD ["/bin/sh"] 0B | ||
<missing> 13 days ago /bin/sh -c #(nop) ADD file:e69d441d729412d24… 5.59MB | <missing> 13 days ago /bin/sh -c #(nop) ADD file:e69d441d729412d24… 5.59MB | ||
Each of the lines represents a layer in the image | Each of the lines represents a layer in the image | ||
* The display here shows the base at the bottom with the newest layer at the top | * The display here shows the base at the bottom with the newest layer at the top | ||
* Using this, you can also quickly see the size of each layer, helping diagnose large images | * Using this, you can also quickly see the size of each layer, helping diagnose large images | ||
You'll notice that several of the lines are truncated | You'll notice that several of the lines are truncated | ||
* If you add the --no-trunc flag, you'll get the full output | * If you add the --no-trunc flag, you'll get the full output | ||
docker image history --no-trunc getting-started | docker image history --no-trunc getting-started | ||
== Layer caching == | == Layer caching == | ||
Now that you've seen the layering in action, there's an important lesson to learn to help decrease build times for your container images | Now that you've seen the layering in action, there's an important lesson to learn to help decrease build times for your container images | ||
* Once a layer changes, all downstream layers have to be recreated as well | * Once a layer changes, all downstream layers have to be recreated as well | ||
Look at the following Dockerfile you created for the getting started app | Look at the following Dockerfile you created for the getting started app | ||
# syntax=docker/dockerfile:1 | # syntax=docker/dockerfile:1 | ||
FROM node:lts-alpine | FROM node:lts-alpine | ||
WORKDIR /app | WORKDIR /app | ||
COPY | COPY . | ||
RUN yarn install --production | RUN yarn install --production | ||
CMD ["node", "src/index.js"] | CMD ["node", "src/index.js"] | ||
Going back to the image history output, you see that each command in the Dockerfile becomes a new layer in the image | Going back to the image history output, you see that each command in the Dockerfile becomes a new layer in the image | ||
* You might remember that when you made a change to the image, the yarn dependencies had to be reinstalled | * You might remember that when you made a change to the image, the yarn dependencies had to be reinstalled | ||
* It doesn't make much sense to ship around the same dependencies every time you build | * It doesn't make much sense to ship around the same dependencies every time you build | ||
To fix it, you need to restructure your Dockerfile to help support the caching of the dependencies | To fix it, you need to restructure your Dockerfile to help support the caching of the dependencies | ||
* For Node-based applications, those dependencies are defined in the package.json file | * For Node-based applications, those dependencies are defined in the package.json file | ||
* You can copy only that file in first, install the dependencies, and then copy in everything else | * You can copy only that file in first, install the dependencies, and then copy in everything else | ||
* Then, you only recreate the yarn dependencies if there was a change to the package.json | * Then, you only recreate the yarn dependencies if there was a change to the package.json | ||
1. Update the Dockerfile to copy in the package.json first, install dependencies, and then copy everything else in | 1. Update the Dockerfile to copy in the package.json first, install dependencies, and then copy everything else in | ||
# syntax=docker/dockerfile:1 | # syntax=docker/dockerfile:1 | ||
FROM node:lts-alpine | FROM node:lts-alpine | ||
| Zeile 58: | Zeile 58: | ||
COPY package.json yarn.lock ./ | COPY package.json yarn.lock ./ | ||
RUN yarn install --production | RUN yarn install --production | ||
COPY | COPY . | ||
CMD ["node", "src/index.js"] | CMD ["node", "src/index.js"] | ||
• Build a new image using docker build | • Build a new image using docker build | ||
docker build -t getting-started | docker build -t getting-started | ||
You should see output like the following | You should see output like the following | ||
[+] Building 16.1s (10/10) FINISHED | [+] Building 16.1s (10/10) FINISHED | ||
=> [internal] load build definition from Dockerfile | => [internal] load build definition from Dockerfile | ||
| Zeile 76: | Zeile 76: | ||
=> [3/5] COPY package.json yarn.lock ./ | => [3/5] COPY package.json yarn.lock ./ | ||
=> [4/5] RUN yarn install --production | => [4/5] RUN yarn install --production | ||
=> [5/5] COPY | => [5/5] COPY . | ||
=> exporting to image | => exporting to image | ||
=> => exporting layers | => => exporting layers | ||
=> => writing image sha256:d6f819013566c54c50124ed94d5e66c452325327217f4f04399b45f94e37d25 | => => writing image sha256:d6f819013566c54c50124ed94d5e66c452325327217f4f04399b45f94e37d25 | ||
=> => naming to docker.io/library/getting-started | => => naming to docker.io/library/getting-started | ||
• Now, make a change to the src/static/index.html file | • Now, make a change to the src/static/index.html file | ||
* For example, change the <title> to "The Awesome Todo App" | * For example, change the <title> to "The Awesome Todo App" | ||
• Build the Docker image now using docker build -t getting-started | • Build the Docker image now using docker build -t getting-started | ||
* again | * again | ||
* This time, your output should look a little different | * This time, your output should look a little different | ||
4. [+] Building 1.2s (10/10) FINISHED | 4. [+] Building 1.2s (10/10) FINISHED | ||
=> [internal] load build definition from Dockerfile | => [internal] load build definition from Dockerfile | ||
| Zeile 98: | Zeile 98: | ||
=> CACHED [3/5] COPY package.json yarn.lock ./ | => CACHED [3/5] COPY package.json yarn.lock ./ | ||
=> CACHED [4/5] RUN yarn install --production | => CACHED [4/5] RUN yarn install --production | ||
=> [5/5] COPY | => [5/5] COPY . | ||
=> exporting to image | => exporting to image | ||
=> => exporting layers | => => exporting layers | ||
| Zeile 104: | Zeile 104: | ||
=> => naming to docker.io/library/getting-started | => => naming to docker.io/library/getting-started | ||
First off, you should notice that the build was much faster | First off, you should notice that the build was much faster | ||
* And, you'll see that several steps are using previously cached layers | * And, you'll see that several steps are using previously cached layers | ||
* Pushing and pulling this image and updates to it will be much faster as well | * Pushing and pulling this image and updates to it will be much faster as well | ||
== Multi-stage builds == | == Multi-stage builds == | ||
Multi-stage builds are an incredibly powerful tool to help use multiple stages to create an image | Multi-stage builds are an incredibly powerful tool to help use multiple stages to create an image | ||
* There are several advantages for them | * There are several advantages for them | ||
• Separate build-time dependencies from runtime dependencies | • Separate build-time dependencies from runtime dependencies | ||
• Reduce overall image size by shipping only what your app needs to run | • Reduce overall image size by shipping only what your app needs to run | ||
=== Maven/Tomcat example === | === Maven/Tomcat example === | ||
When building Java-based applications, you need a JDK to compile the source code to Java bytecode | When building Java-based applications, you need a JDK to compile the source code to Java bytecode | ||
* However, that JDK isn't needed in production | * However, that JDK isn't needed in production | ||
* Also, you might be using tools like Maven or Gradle to help build the app | * Also, you might be using tools like Maven or Gradle to help build the app | ||
* Those also aren't needed in your final image | * Those also aren't needed in your final image | ||
* Multi-stage builds help | * Multi-stage builds help | ||
# syntax=docker/dockerfile:1 | # syntax=docker/dockerfile:1 | ||
FROM maven AS build | FROM maven AS build | ||
WORKDIR /app | |||
COPY . | |||
RUN mvn package | |||
FROM tomcat | |||
COPY --from=build /app/target/file.war /usr/local/tomcat/webapps | |||
* In the second stage (starting at FROM tomcat), you copy in files from the build stage | In this example, you use one stage (called build) to perform the actual Java build using Maven | ||
* The final image is only the last stage being created, which can be overridden using the --target flag | * In the second stage (starting at FROM tomcat), you copy in files from the build stage | ||
* The final image is only the last stage being created, which can be overridden using the --target flag | |||
=== React example === | === React example === | ||
When building React applications, you need a Node environment to compile the JS code (typically JSX), SASS stylesheets, and more into static HTML, JS, and CSS | When building React applications, you need a Node environment to compile the JS code (typically JSX), SASS stylesheets, and more into static HTML, JS, and CSS | ||
* If you aren't doing server-side rendering, you don't even need a Node environment for your production build | * If you aren't doing server-side rendering, you don't even need a Node environment for your production build | ||
You can ship the static resources in a static nginx container | |||
# syntax=docker/dockerfile:1 | # syntax=docker/dockerfile:1 | ||
FROM node:lts AS build | FROM node:lts AS build | ||
| Zeile 145: | Zeile 147: | ||
COPY src ./src | COPY src ./src | ||
RUN yarn run build | RUN yarn run build | ||
FROM nginx:alpine | FROM nginx:alpine | ||
COPY --from=build /app/build /usr/share/nginx/html | COPY --from=build /app/build /usr/share/nginx/html | ||
In the previous Dockerfile example, it uses the node:lts image to perform the build (maximizing layer caching) and then copies the output into an nginx container | In the previous Dockerfile example, it uses the node:lts image to perform the build (maximizing layer caching) and then copies the output into an nginx container | ||
; Summary | ; Summary | ||
In this section, you learned a few image building best practices, including layer caching and multi-stage builds | In this section, you learned a few image building best practices, including layer caching and multi-stage builds | ||
Related information | Related information | ||
• Dockerfile reference | • Dockerfile reference | ||
• Dockerfile best practices | • Dockerfile best practices | ||
; Next steps | ; Next steps | ||
In the next section, you'll learn about additional resources you can use to continue learning about containers | In the next section, you'll learn about additional resources you can use to continue learning about containers | ||
Version vom 23. Oktober 2025, 15:59 Uhr
Docker/Workshop/Image/Erstellung - Image-building best practices
Image layering
Using the docker image history command, you can see the command that was used to create each layer within an image
docker image history
Use the docker image history command to see the layers in the getting-started image you created
docker image history getting-started
IMAGE CREATED CREATED BY SIZE COMMENT a78a40cbf866 18 seconds ago /bin/sh -c #(nop) CMD ["node" "src/index.j… 0B f1d1808565d6 19 seconds ago /bin/sh -c yarn install --production 85.4MB a2c054d14948 36 seconds ago /bin/sh -c #(nop) COPY dir:5dc710ad87c789593… 198kB 9577ae713121 37 seconds ago /bin/sh -c #(nop) WORKDIR /app 0B b95baba1cfdb 13 days ago /bin/sh -c #(nop) CMD ["node"] 0B <missing> 13 days ago /bin/sh -c #(nop) ENTRYPOINT ["docker-entry… 0B <missing> 13 days ago /bin/sh -c #(nop) COPY file:238737301d473041… 116B <missing> 13 days ago /bin/sh -c apk add --no-cache --virtual .bui… 5.35MB <missing> 13 days ago /bin/sh -c #(nop) ENV YARN_VERSION=1.21.1 0B <missing> 13 days ago /bin/sh -c addgroup -g 1000 node && addu… 74.3MB <missing> 13 days ago /bin/sh -c #(nop) ENV NODE_VERSION=12.14.1 0B <missing> 13 days ago /bin/sh -c #(nop) CMD ["/bin/sh"] 0B <missing> 13 days ago /bin/sh -c #(nop) ADD file:e69d441d729412d24… 5.59MB
Each of the lines represents a layer in the image
- The display here shows the base at the bottom with the newest layer at the top
- Using this, you can also quickly see the size of each layer, helping diagnose large images
You'll notice that several of the lines are truncated
- If you add the --no-trunc flag, you'll get the full output
docker image history --no-trunc getting-started
Layer caching
Now that you've seen the layering in action, there's an important lesson to learn to help decrease build times for your container images
- Once a layer changes, all downstream layers have to be recreated as well
Look at the following Dockerfile you created for the getting started app
# syntax=docker/dockerfile:1 FROM node:lts-alpine WORKDIR /app COPY . RUN yarn install --production CMD ["node", "src/index.js"]
Going back to the image history output, you see that each command in the Dockerfile becomes a new layer in the image
- You might remember that when you made a change to the image, the yarn dependencies had to be reinstalled
- It doesn't make much sense to ship around the same dependencies every time you build
To fix it, you need to restructure your Dockerfile to help support the caching of the dependencies
- For Node-based applications, those dependencies are defined in the package.json file
- You can copy only that file in first, install the dependencies, and then copy in everything else
- Then, you only recreate the yarn dependencies if there was a change to the package.json
1. Update the Dockerfile to copy in the package.json first, install dependencies, and then copy everything else in
# syntax=docker/dockerfile:1
FROM node:lts-alpine
WORKDIR /app
COPY package.json yarn.lock ./
RUN yarn install --production
COPY .
CMD ["node", "src/index.js"]
• Build a new image using docker build
docker build -t getting-started
You should see output like the following
[+] Building 16.1s (10/10) FINISHED
=> [internal] load build definition from Dockerfile
=> => transferring dockerfile: 175B
=> [internal] load .dockerignore
=> => transferring context: 2B
=> [internal] load metadata for docker.io/library/node:lts-alpine
=> [internal] load build context
=> => transferring context: 53.37MB
=> [1/5] FROM docker.io/library/node:lts-alpine
=> CACHED [2/5] WORKDIR /app
=> [3/5] COPY package.json yarn.lock ./
=> [4/5] RUN yarn install --production
=> [5/5] COPY .
=> exporting to image
=> => exporting layers
=> => writing image sha256:d6f819013566c54c50124ed94d5e66c452325327217f4f04399b45f94e37d25
=> => naming to docker.io/library/getting-started
• Now, make a change to the src/static/index.html file
- For example, change the <title> to "The Awesome Todo App"
• Build the Docker image now using docker build -t getting-started
- again
- This time, your output should look a little different
4. [+] Building 1.2s (10/10) FINISHED
=> [internal] load build definition from Dockerfile
=> => transferring dockerfile: 37B
=> [internal] load .dockerignore
=> => transferring context: 2B
=> [internal] load metadata for docker.io/library/node:lts-alpine
=> [internal] load build context
=> => transferring context: 450.43kB
=> [1/5] FROM docker.io/library/node:lts-alpine
=> CACHED [2/5] WORKDIR /app
=> CACHED [3/5] COPY package.json yarn.lock ./
=> CACHED [4/5] RUN yarn install --production
=> [5/5] COPY .
=> exporting to image
=> => exporting layers
=> => writing image sha256:91790c87bcb096a83c2bd4eb512bc8b134c757cda0bdee4038187f98148e2eda
=> => naming to docker.io/library/getting-started
First off, you should notice that the build was much faster
- And, you'll see that several steps are using previously cached layers
- Pushing and pulling this image and updates to it will be much faster as well
Multi-stage builds
Multi-stage builds are an incredibly powerful tool to help use multiple stages to create an image
- There are several advantages for them
• Separate build-time dependencies from runtime dependencies • Reduce overall image size by shipping only what your app needs to run
Maven/Tomcat example
When building Java-based applications, you need a JDK to compile the source code to Java bytecode
- However, that JDK isn't needed in production
- Also, you might be using tools like Maven or Gradle to help build the app
- Those also aren't needed in your final image
- Multi-stage builds help
# syntax=docker/dockerfile:1 FROM maven AS build WORKDIR /app COPY . RUN mvn package
FROM tomcat COPY --from=build /app/target/file.war /usr/local/tomcat/webapps
In this example, you use one stage (called build) to perform the actual Java build using Maven
- In the second stage (starting at FROM tomcat), you copy in files from the build stage
- The final image is only the last stage being created, which can be overridden using the --target flag
React example
When building React applications, you need a Node environment to compile the JS code (typically JSX), SASS stylesheets, and more into static HTML, JS, and CSS
- If you aren't doing server-side rendering, you don't even need a Node environment for your production build
You can ship the static resources in a static nginx container
# syntax=docker/dockerfile:1 FROM node:lts AS build WORKDIR /app COPY package* yarn.lock ./ RUN yarn install COPY public ./public COPY src ./src RUN yarn run build
FROM nginx:alpine COPY --from=build /app/build /usr/share/nginx/html
In the previous Dockerfile example, it uses the node:lts image to perform the build (maximizing layer caching) and then copies the output into an nginx container
- Summary
In this section, you learned a few image building best practices, including layer caching and multi-stage builds Related information
• Dockerfile reference • Dockerfile best practices
- Next steps
In the next section, you'll learn about additional resources you can use to continue learning about containers