Skip to content

Commit 3ca62ee

Browse files
authored
Fix minor typo (#241)
* Fix minor typo * Add missing RUN tags
1 parent 67e464f commit 3ca62ee

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/getting-started/docker-custom.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@ The project makes available a number of different versions of the Docker contain
1616

1717
Specifically the `-minimal` containers do not have the native build tools required to build some nodes components triggered by installing them.
1818

19-
Both of these sets of images are based on the NodeJS Alpine containers. Alpine is a Linux distribution tha aims to provide the smallest possible install footprint, it is used as the base for many language runtime containers (e.g. NodeJS & Python). As part of a number of optomisations to reduce the size it uses the [musl](https://www.musl-libc.org/intro.html) libc instead of the usual glibc implementation.
19+
Both of these sets of images are based on the NodeJS Alpine containers. Alpine is a Linux distribution that aims to provide the smallest possible install footprint, it is used as the base for many language runtime containers (e.g. NodeJS & Python). As part of a number of optomisations to reduce the size it uses the [musl](https://www.musl-libc.org/intro.html) libc instead of the usual glibc implementation.
2020

2121
Musl works fine with most applications but on some occations it can cause problems e.g. with some of the [SAP](https://github.com/SAP/node-rfc/issues/148) nodes and with some low level video codec.
2222

2323
If you want to extend the provided Docker containers then then you will need to use Apline's package management tool `apk` to install additional libraries or applications.
2424

2525
FROM nodered/node-red:latest
2626
USER root
27-
apk add py3-pip py3-numpy py3-pandas py3-scikit-learn
28-
pip install tensorflow
27+
RUN apk add py3-pip py3-numpy py3-pandas py3-scikit-learn
28+
RUN pip install tensorflow
2929
USER node-red
3030

3131
### Debian based containers

0 commit comments

Comments
 (0)