diff --git a/.gitignore b/.gitignore index 2b34c0ba..fdfaec34 100644 --- a/.gitignore +++ b/.gitignore @@ -118,3 +118,6 @@ cython_debug/ # Developers Notes.md Dockerfile.local + +# Secrets +secrets diff --git a/Dockerfile b/Dockerfile index 969d0c09..c390c13a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ ## Using alpine fails on awscli install FROM python:3.8.6-alpine ENV DEBIAN_FRONTEND=noninteractive +ENV PYTHONUNBUFFERED=1 RUN apk add --no-cache bash RUN apk update