Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Arrow up icon
GO TO TOP
Learning Windows Server Containers

You're reading from   Learning Windows Server Containers Build and deploy high-quality portable apps faster

Arrow left icon
Product type Paperback
Published in Apr 2017
Publisher Packt
ISBN-13 9781785887932
Length 404 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
 Machiraju Machiraju
Author Profile Icon Machiraju
Machiraju
Arrow right icon
View More author details
Toc

Table of Contents (19) Chapters Close

Credits
Foreword
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
1. Exploring Virtualization FREE CHAPTER 2. Deploying First Container 3. Working with Container Images 4. Developing Container Applications 5. Deploying Container Applications 6. Storage Volumes 7. Redis Cache Containers 8. Container Network 9. Continuous Integration and Delivery 10. Manage Resource Allocation and REST API 11. Composite Containers and Clustering 12. Nano Server

Optimizing Dockerfiles


We have learned about building Windows Container images using Docker image files and also using Docker build. However, we have not yet learned how to build them efficiently. This section deals with important tips and tactics which can be used to optimize the image-building process. Before we learn to optimize a Dockerfile, let us first understand how Docker builds images.

The following Dockerfile creates a Windows image with IIS installed:

FROM Microsoft/windowsservercore
    RUN dism /online /enable-feature /all /
    featurename:iis-webserver /NoRestart
    RUN echo "Hello World - Dockerfile" >
    c:\inetpub\wwwroot\index.html
    EXPOSE 80 
    CMD [ "cmd" ]

Docker consumes the above Dockerfile and, at the first instruction, where we select the base image Microsoft/windowsservercore, a temporary container is created. Thereafter at every instruction Docker updates the container and creates another temporary container which will be used by the next instruction. In...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime
Visually different images