Skip to content

Commit 3a860e0

Browse files
author
HeidiSeibold
committed
issue #8 Challenge questions hadleyverse Dockerfile
1 parent 03f7d53 commit 3a860e0

File tree

2 files changed

+49
-21
lines changed

2 files changed

+49
-21
lines changed

05-dockerfiles.Rmd

+12
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,17 @@ Step 3 : RUN R CMD INSTALL gapminder_0.2.0.tar.gz
9090
```
9191
Noting that a cached version of the commands was being used. When you rebuild an image, Docker checks the previous version(s) of that image to see if the same commands were executed previously; each of those steps is preserved as a separate layer, and Docker is smart enough to re-use those layers if they are unchanged and *in the same order* as previously. Therefore, once you've got part of your setup process figured out (particularly if it's a slow part), leave it near the top of your Dockerfile and don't put anything above or between those lines, particularly things that change frequently; this can substantially speed up your build process.
9292

93+
94+
## Challenge Questions
95+
Find the Dockerfile of the `rocker/hadleyverse` image through Docker Hub.
96+
97+
- How does having a Dockerfile compare to a README file (like the one we
98+
prepared in lesson 3)?
99+
- Docker Hub can automatically build images when you store the file on Github
100+
or Bitbucket. What do you think are the benefits of doing this instead of
101+
commiting the image directly? Could it be negative?
102+
- Find the build details of the `rocker/hadleyverse` image. What do they tell us?
103+
104+
93105
Go to [Lesson 06 Share all your analysis](06-Sharing-all-your-analysis.html) or back to the
94106
[main page](http://ropenscilabs.github.io/r-docker-tutorial/).

05-dockerfiles.html

+37-21
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta charset="utf-8">
88
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
99
<meta name="generator" content="pandoc" />
10-
<meta name="viewport" content="width=device-width, initial-scale=1">
10+
1111

1212

1313

@@ -38,25 +38,7 @@
3838

3939

4040

41-
42-
</head>
43-
44-
<body>
45-
4641
<style type="text/css">
47-
.main-container {
48-
max-width: 940px;
49-
margin-left: auto;
50-
margin-right: auto;
51-
}
52-
code {
53-
color: inherit;
54-
background-color: rgba(0, 0, 0, 0.04);
55-
}
56-
img {
57-
max-width:100%;
58-
height: auto;
59-
}
6042
h1 {
6143
font-size: 34px;
6244
}
@@ -78,6 +60,30 @@
7860
h6 {
7961
font-size: 12px;
8062
}
63+
.table th:not([align]) {
64+
text-align: left;
65+
}
66+
</style>
67+
68+
69+
</head>
70+
71+
<body>
72+
73+
<style type="text/css">
74+
.main-container {
75+
max-width: 940px;
76+
margin-left: auto;
77+
margin-right: auto;
78+
}
79+
code {
80+
color: inherit;
81+
background-color: rgba(0, 0, 0, 0.04);
82+
}
83+
img {
84+
max-width:100%;
85+
height: auto;
86+
}
8187
.tabbed-pane {
8288
padding-top: 12px;
8389
}
@@ -107,7 +113,8 @@
107113
<div class="fluid-row" id="header">
108114

109115

110-
<h1 class="title">Dockerfiles</h1>
116+
117+
<h1 class="title toc-ignore">Dockerfiles</h1>
111118

112119
</div>
113120

@@ -150,10 +157,19 @@ <h4>Protip: Cached Layers</h4>
150157
---&gt; Using cache
151158
---&gt; eeb8ef4dc0a8</code></pre>
152159
<p>Noting that a cached version of the commands was being used. When you rebuild an image, Docker checks the previous version(s) of that image to see if the same commands were executed previously; each of those steps is preserved as a separate layer, and Docker is smart enough to re-use those layers if they are unchanged and <em>in the same order</em> as previously. Therefore, once you’ve got part of your setup process figured out (particularly if it’s a slow part), leave it near the top of your Dockerfile and don’t put anything above or between those lines, particularly things that change frequently; this can substantially speed up your build process.</p>
160+
</div>
161+
</div>
162+
<div id="challenge-questions" class="section level2">
163+
<h2>Challenge Questions</h2>
164+
<p>Find the Dockerfile of the <code>rocker/hadleyverse</code> image through Docker Hub.</p>
165+
<ul>
166+
<li>How does having a Dockerfile compare to a README file (like the one we prepared in lesson 3)?</li>
167+
<li>Docker Hub can automatically build images when you store the file on Github or Bitbucket. What do you think are the benefits of doing this instead of commiting the image directly? Could it be negative?</li>
168+
<li>Find the build details of the <code>rocker/hadleyverse</code> image. What do they tell us?</li>
169+
</ul>
153170
<p>Go to <a href="06-Sharing-all-your-analysis.html">Lesson 06 Share all your analysis</a> or back to the<br />
154171
<a href="http://ropenscilabs.github.io/r-docker-tutorial/">main page</a>.</p>
155172
</div>
156-
</div>
157173

158174

159175

0 commit comments

Comments
 (0)