Skip to content

Commit

Permalink
fix: dockerfile python parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
danimart1991 committed Nov 20, 2024
1 parent e87fd19 commit 23b3dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ ENV DELAY 600
ENV LOG_LEVEL INFO

# Run app.py when the container launches
CMD ["python", "jackett2telegram.py", "--token", TOKEN, "--chat_id", CHATID, "--delay", DELAY, "--log_level", LOG_LEVEL]
CMD ["sh", "-c", "python jackett2telegram.py --token ${TOKEN} --chat_id ${CHATID} --delay ${DELAY} --log_level ${LOG_LEVEL}"]

0 comments on commit 23b3dc1

Please sign in to comment.