We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4530ae7 commit af52054Copy full SHA for af52054
Dockerfile
@@ -23,6 +23,9 @@ COPY --from=build /wheels-base/ /wheels/
23
RUN pip install --no-cache-dir --no-index --find-links=/wheels/ /wheels/* \
24
&& rm -rf /wheels/
25
26
+WORKDIR /app
27
+COPY . .
28
+
29
COPY entrypoint.sh /entrypoint.sh
30
31
ENTRYPOINT ["/entrypoint.sh"]
entrypoint.sh
@@ -13,7 +13,7 @@ set -o pipefail
13
# Print commands and their arguments as they are executed
14
#set -o xtrace
15
16
-cd /github
+cd /app
17
18
echo "****** Current Directory ******"
19
pwd
@@ -23,3 +23,6 @@ ls -laR
echo "****** Environment Variables ******"
env
+export PYTHONPATH=/app
+python main.py
0 commit comments