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 29775c9 commit 26b2949Copy full SHA for 26b2949
1 file changed
app/Dockerfile
@@ -7,6 +7,8 @@ RUN dnf install -y git findutils && dnf clean all
7
8
WORKDIR /app
9
10
+ENV PYTHONPATH=/app
11
+
12
# Copy and install any packages/modules needed for your evaluation script.
13
COPY requirements.txt .
14
RUN pip3 install -r requirements.txt
@@ -57,4 +59,4 @@ RUN chmod 644 $(find . -type f)
57
59
RUN chmod 755 $(find . -type d)
58
60
61
# The entrypoint for AWS is to invoke the handler function within the app package
-CMD [ "/app/app.handler" ]
62
+CMD [ "app.handler" ]
0 commit comments