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"