We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e50a1f commit 9d6e9aaCopy full SHA for 9d6e9aa
sandbox/dos-ingest-sandbox/Dockerfile
@@ -4,7 +4,8 @@ RUN groupadd -r appuser && useradd -r -g appuser appuser
4
5
WORKDIR /app
6
7
-COPY pyproject.toml poetry.lock* /app/
+COPY pyproject.toml /app/
8
+COPY poetry.lock /app/
9
10
RUN pip install --no-cache-dir poetry \
11
&& poetry config virtualenvs.create false \
sandbox/dos-ingest-sandbox/src/app/main.py
@@ -13,6 +13,6 @@
13
def status():
14
return Response(status_code=HTTP_200_OK)
15
16
-
+# Listening on 0.0.0.0 is intentional as the process will be running in a container.
17
if __name__ == "__main__":
18
uvicorn.run(app, host="0.0.0.0", port=9000)
0 commit comments