From 91a6f6564fa0a4e0c09701c1b8e6c7c09ebb5523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Ludue=C3=B1a?= <elnomade@gmail.com> Date: Wed, 10 Aug 2016 00:11:12 -0300 Subject: [PATCH] replacing /root by /opt/tier. following Filesystem Hierarchy Standard https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard --- Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index f3ae542..71bd612 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,8 @@ LABEL Build docker build --rm --tag $maintainer/$imagename . # Install base deps RUN yum -y install --setopt=tsflags=nodocs epel-release && \ yum -y install net-tools wget curl tar unzip mlocate logrotate strace telnet man unzip vim wget rsyslog cron && \ - yum clean all + yum clean all && \ + mkdir -p /opt/tier # Install Trusted Certificates RUN update-ca-trust force-enable @@ -26,10 +27,10 @@ ADD ./cert/InCommon.crt /etc/pki/ca-trust/source/anchors/ RUN update-ca-trust extract # Set default environment variables. -ENV HOME /root +ENV HOME /opt/tier # Allow triggerable events on the first time running RUN touch /tmp/firsttimerunning # Define working directory. -WORKDIR /root +WORKDIR /opt/tier