diff --git a/.dockerignore b/.dockerignore index ff4a743..62c82c3 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,7 +4,6 @@ __pycache__/ *.pyd .pytest_cache/ .env -config.local.json state.db /data/ .git/ diff --git a/Dockerfile b/Dockerfile index 02d13bd..7861850 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ RUN pip install --no-cache-dir -r requirements.txt COPY app ./app COPY seeds ./seeds COPY scripts ./scripts +COPY config.local.json ./ EXPOSE 8080