Skip to content

Commit 072661b

Browse files
authored
Merge pull request #551 from CodeForPhilly/510-cleanup
Fix internal_api import, Dockerfile mkdir
2 parents 9cca00c + 5465cd5 commit 072661b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN chmod 666 /usr/lib/uwsgi/plugins/python38_plugin.so
2323

2424
COPY . .
2525

26-
RUN mkdir /app/static \
26+
RUN mkdir -p /app/static \
2727
/app/static/raw_data \
2828
/app/static/logs \
2929
/app/static/zipped

src/server/api/internal_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from api.API_ingest import ingest_sources_from_api, salesforce_contacts
77
from api.api import internal_api
88
from rfm_funcs.create_scores import create_scores
9-
from server.api.API_ingest import updated_data
9+
from api.API_ingest import updated_data
1010

1111
logger = structlog.get_logger()
1212

0 commit comments

Comments
 (0)