diff --git a/Dockerfile b/Dockerfile index d3c559e..bfcb1f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,8 +6,5 @@ RUN echo $(ls ./src) RUN echo $(python --version) -RUN pipenv install requests - -#ENTRYPOINT ["pipenv", "run", "python", "-m", "src.index"] COPY entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh index a90fd54..3e2dc15 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -3,4 +3,6 @@ cd /root ls ./ +pipenv run pip freeze + pipenv run python -m src.index \ No newline at end of file