13 lines
175 B
Docker
13 lines
175 B
Docker
FROM nodered/node-red:latest-12
|
|
|
|
USER root
|
|
|
|
RUN set -ex && \
|
|
apt-get update && \
|
|
apt-get install -y \
|
|
iputils-ping \
|
|
iputils-arping
|
|
|
|
|
|
USER node-red
|