Skip to content

Commit 9d6e9aa

Browse files
authored
fix(sandbox): FTRS-3093 resolve hot spot in ds ingest (#865)
1 parent 5e50a1f commit 9d6e9aa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

sandbox/dos-ingest-sandbox/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ RUN groupadd -r appuser && useradd -r -g appuser appuser
44

55
WORKDIR /app
66

7-
COPY pyproject.toml poetry.lock* /app/
7+
COPY pyproject.toml /app/
8+
COPY poetry.lock /app/
89

910
RUN pip install --no-cache-dir poetry \
1011
&& poetry config virtualenvs.create false \

sandbox/dos-ingest-sandbox/src/app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
def status():
1414
return Response(status_code=HTTP_200_OK)
1515

16-
16+
# Listening on 0.0.0.0 is intentional as the process will be running in a container.
1717
if __name__ == "__main__":
1818
uvicorn.run(app, host="0.0.0.0", port=9000)

0 commit comments

Comments
 (0)