diff --git a/Dockerfile b/Dockerfile index ff818dc..032b5be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ FROM python:3.10-slim -WORKDIR /app -COPY . /app +COPY . / RUN python -m pip install requests -ENTRYPOINT ["/app/entrypoint.sh"] +ENTRYPOINT ["/entrypoint.sh"] diff --git a/entrypoint.sh b/entrypoint.sh index fb1adb9..5ae2864 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -1,2 +1,2 @@ #!/bin/bash -python /app/send_message.py \ No newline at end of file +python /send_message.py \ No newline at end of file