From 39f8bba230357f92b4ccf196d52b8e2bf759a3d4 Mon Sep 17 00:00:00 2001 From: mcinj <98779161+mcinj@users.noreply.github.com> Date: Sun, 24 Apr 2022 13:48:52 -0400 Subject: [PATCH] fixes --- .dockerignore | 3 ++- .gitignore | 1 + Dockerfile | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.dockerignore b/.dockerignore index d088fa3..2095963 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1 +1,2 @@ -src/config.ini \ No newline at end of file +config/config.ini +config/debug.log \ No newline at end of file diff --git a/.gitignore b/.gitignore index 3d642d4..dee8e27 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ env/ +venv/ *.ini __pycache__/ .idea diff --git a/Dockerfile b/Dockerfile index 470c0c0..43eb4a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /app # resolves gcc issue with installing regex dependency RUN apk add build-base tzdata --no-cache -ENV TZ=Africa/New_York +ENV TZ=America/New_York ENV VIRTUAL_ENV=/app/env ENV PATH="$VIRTUAL_ENV/bin:$PATH"