Skip to content

Commit acb601f

Browse files
committed
Minor build change
1 parent 64d42b3 commit acb601f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

shuffle-tools/1.2.0/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ RUN apk --no-cache add --update alpine-sdk libffi libffi-dev musl-dev openssl-de
1111
RUN mkdir /install
1212
WORKDIR /install
1313
COPY requirements.txt /requirements.txt
14-
RUN pip install --no-cache-dir --prefix="/install" -r /requirements.txt
14+
#RUN pip install --no-cache-dir --prefix="/install" -r /requirements.txt
15+
RUN pip install --prefix="/install" -r /requirements.txt
1516

1617
# Switch back to our base image and copy in all of our built packages and source code
1718
FROM base

shuffle-tools/1.2.0/src/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ def custom_print(*args, **kwargs):
613613
if "'return' outside function" in str(e):
614614
return {
615615
"success": False,
616-
"message": f"Instead of using 'return' without a function, use 'exit()' to return when not inside a function. Raw Syntax error: {e}",
616+
"message": f"SyntaxError - Shuffle Recommendation: Instead of using 'return' without a function, use 'exit()' to return when not inside a function. Raw Syntax error: {e}",
617617
}
618618
else:
619619
return {

0 commit comments

Comments
 (0)