Add Dockerfile for automatical build on the Docker hub

This commit is contained in:
Nicolargo 2015-11-27 10:53:32 +01:00
parent d49cdd1b88
commit 63289a895a

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
#
# Glances Dockerfile
#
# https://github.com/nicolargo/glances
#
# Pull base image.
FROM ubuntu
# Install Glances (develop branch)
RUN apt-get -y install curl && \
curl -L https://raw.githubusercontent.com/nicolargo/glancesautoinstall/master/install-develop.sh | /bin/bash
# Define working directory.
WORKDIR /glances
# Define default command.
CMD ["python", "-m", "glances", "$GLANCES_OPT"]