summaryrefslogtreecommitdiffstats
path: root/docker-files/devel/Dockerfile
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2021-01-23 11:10:27 +0100
committernicolargo <nicolas@nicolargo.com>2021-01-23 11:10:27 +0100
commit0d35d5477bd1afbbb0bd990592fb69e7bae3743b (patch)
tree6f84805151a45589ae2c9333c9b90677a81c9b5c /docker-files/devel/Dockerfile
parentcdb6bfbb70cd5efb9f5e040e4247111e106367d4 (diff)
parent1b36ed92a213e56a5801a4d962de7e9164def927 (diff)
version 3.1.6v3.1.6
Diffstat (limited to 'docker-files/devel/Dockerfile')
-rw-r--r--docker-files/devel/Dockerfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/docker-files/devel/Dockerfile b/docker-files/devel/Dockerfile
deleted file mode 100644
index a0d31190..00000000
--- a/docker-files/devel/Dockerfile
+++ /dev/null
@@ -1,25 +0,0 @@
-#
-# Glances Dockerfile based on Ubuntu OS
-#
-# https://github.com/nicolargo/glances
-#
-
-# Pull base image.
-FROM ubuntu:20.04
-
-# Install Glances (develop branch)
-RUN apt-get update && apt-get -y install curl iputils-ping && rm -rf /var/lib/apt/lists/*
-RUN curl -L https://raw.githubusercontent.com/nicolargo/glancesautoinstall/master/install-develop.sh | /bin/bash && rm -rf /var/lib/apt/lists/*
-
-
-# Define working directory.
-WORKDIR /glances
-
-# EXPOSE PORT (For XMLRPC)
-EXPOSE 61209
-
-# EXPOSE PORT (For Web UI)
-EXPOSE 61208
-
-# Define default command.
-CMD python -m glances -C /glances/conf/glances.conf $GLANCES_OPT