From e20dda68044b18f8c07ceaefa02b18d637d198ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Hedenstr=C3=B6m?= <erik@codemate.se> Date: Sat, 15 Mar 2014 11:06:24 +0100 Subject: [PATCH] Fixed missing RUN statement --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a01b706..9734786 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,8 +12,7 @@ ENV DEBIAN_PRIORITY critical ENV DEBCONF_NOWARNINGS yes # Set Timezone -echo "Europe/Stockholm" > /etc/timezone -dpkg-reconfigure -f noninteractive tzdata +RUN echo "Europe/Stockholm" > /etc/timezone && dpkg-reconfigure -f noninteractive tzdata # Fix locale RUN locale-gen en_US.UTF-8 -- GitLab