18 lines
400 B
Docker
18 lines
400 B
Docker
ARG IGNITION_VERSION=8.3.3
|
|
FROM inductiveautomation/ignition:${IGNITION_VERSION}
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
iputils-ping \
|
|
htop \
|
|
nano \
|
|
net-tools \
|
|
traceroute \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Uncomment to install third-party modules:
|
|
# COPY modules/*.modl /usr/local/bin/ignition/user-lib/modules/
|
|
|
|
EXPOSE 8088 8043 62541 1883
|