Fix Dockerfile

This commit is contained in:
Dave Gallant
2023-02-20 23:35:18 -05:00
parent ee9535d2c5
commit 9beacf713b
3 changed files with 3 additions and 3 deletions

View File

@@ -20,4 +20,4 @@ COPY --from=builder /home/nonroot/.local/lib/python3.11/site-packages /home/nonr
COPY rfd_notify .
ENTRYPOINT ["python", "cli.py", "-c", "config.yaml"]
ENTRYPOINT ["python", "/app/cli.py", "-c", "config.yml"]

View File

@@ -1,3 +1,3 @@
FROM ghcr.io/davegallant/rfd-notify:1
ENTRYPOINT ["python", "cli.py", "-c", "config.yaml"]
ENTRYPOINT ["python", "/app/cli.py", "-c", "config.yml"]

View File

@@ -2,4 +2,4 @@
echo "Starting rfd-notify with config: $1"
rfd-notify -c "$1"
python /app/cli.py -c "$1"