mirror of
/repos/rpi-node.git
synced 2025-12-30 08:01:30 +01:00
22 lines
484 B
Markdown
22 lines
484 B
Markdown
# rpi-node
|
|
Raspberry Pi comptible Docker baseimage with Nodejs preinstalled.
|
|
|
|
Run all the commands from within the project root directory.
|
|
|
|
#### Build the Docker Image
|
|
```bash
|
|
make build
|
|
```
|
|
|
|
#### Run the Docker Image and get the version of the installed Nodejs
|
|
```bash
|
|
make version
|
|
```
|
|
|
|
#### Push the Docker Image to the Docker Hub
|
|
* First use a `docker login` with username, password and email address
|
|
* Second push the Docker Image to the official Docker Hub
|
|
```bash
|
|
make push
|
|
```
|