From ced85f4bbd7af13d3c6decb2436889af31aad557 Mon Sep 17 00:00:00 2001 From: Luiz Picolo Date: Thu, 7 Oct 2021 22:55:34 -0400 Subject: [PATCH] Added Timezone configurations --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index b28dad9..f17dfb5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,8 @@ RUN apt-get update && apt-get install -y \ apt-get update && apt-get install -y nodejs yarn sqlite3 cron ENV RACK_ENV production +ENV TZ=America/Campo_Grande +RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone WORKDIR /code COPY . /code