Skip to content

Commit d81af81

Browse files
authored
fix: Update agent path (#9)
1 parent bd135de commit d81af81

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ VOLUME ["/certs", "/etc/agent"]
3737

3838
# Healthcheck for orchestrators
3939
HEALTHCHECK --interval=30s --timeout=5s \
40-
CMD ["radar-agent", "--health"] || exit 1
40+
CMD ["/usr/local/bin/radar-agent", "--health"] || exit 1
4141

42-
ENTRYPOINT ["radar-agent"]
42+
ENTRYPOINT ["/usr/local/bin/radar-agent"]
4343
CMD ["--config", "/etc/agent/config.yaml"]

docker/Dockerfile.alpine

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ VOLUME ["/certs", "/etc/agent"]
3232

3333
# Healthcheck for orchestrators
3434
HEALTHCHECK --interval=30s --timeout=5s \
35-
CMD ["radar-agent", "--health"] || exit 1
35+
CMD ["/usr/local/bin/radar-agent", "--health"] || exit 1
3636

37-
ENTRYPOINT ["radar-agent"]
37+
ENTRYPOINT ["/usr/local/bin/radar-agent"]
3838
CMD ["--config", "/etc/agent/config.yaml"]

0 commit comments

Comments
 (0)