Skip to content

Commit c7928dc

Browse files
authored
typos in README
1 parent d68b594 commit c7928dc

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Binder](https://mybinder.org/badge.svg)](https://mybinder.org/v2/gh/binder-examples/minimal-dockerfile/master)
44

5-
Binder needs only one thing to work:
5+
[Binder](https://mybinder.org) needs only one thing for images to work:
66

77
- to be able to launch `jupyter notebook` as a specified user (passed via docker build args as NB_UID/NB_USER)
88

@@ -14,11 +14,11 @@ RUN pip install --no-cache notebook
1414

1515
That's *almost* everything.
1616

17-
The remaining pieces is that the specified user must be able to *start* the notebook,
17+
The remaining piece is that the specified user must be able to *start* the notebook,
1818
which requires certain permissions like being able to write to the home directory.
1919

2020
The absolute bare minimum for this is to set HOME to `/tmp` so that it's writable,
21-
which would make the shortest, smallest dockerfile:
21+
which would make the shortest, smallest Dockerfile that works on Binder:
2222

2323
```docker
2424
FROM python:3.7-slim
@@ -43,3 +43,5 @@ RUN adduser --disabled-password \
4343
${NB_USER}
4444
WORKDIR ${HOME}
4545
```
46+
47+
From this point, you can start adding files, installing packages, etc.

0 commit comments

Comments
 (0)