We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0a55e8 commit 1072ad8Copy full SHA for 1072ad8
.dockerignore
@@ -1,3 +1,3 @@
1
**
2
!requirements.txt
3
-!es_test_data.py
+!search_test.py
Dockerfile
@@ -39,7 +39,8 @@ RUN pip install --ignore-installed --no-warn-script-location --prefix="/dist" -r
39
40
WORKDIR /dist/
41
42
-COPY es_test_data.py .
+COPY modules ./modules/
43
+COPY search_test.py .
44
45
# For debugging the Build Stage
46
CMD ["bash"]
@@ -79,4 +80,4 @@ USER "$APP_USER_NAME"
79
80
COPY --from=build --chown="$APP_USER_NAME":"$APP_GROUP_ID" /dist/ "$PYTHONUSERBASE"/
81
82
# Use ENTRYPOINT instead CMD to force the container to start the application
-ENTRYPOINT ["python", "es_test_data.py"]
83
+ENTRYPOINT ["python", "search_test.py"]
0 commit comments