Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(agent): docker image #3189

Merged
merged 15 commits into from
Sep 27, 2023
7 changes: 7 additions & 0 deletions agent/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM kubeshop/tracetest:v0.13.9
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this looks like a very easy thing to forget to update on every release. can we make it dynamic somehow?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

do you think it's worth adding it to the pipeline now and make it build the same way our main image?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yea, totally, no time like the present

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done!

WORKDIR /app

ENV TRACETEST_API_KEY ""

ENTRYPOINT [ "tracetest", "start", "--api-key", "$TRACETEST_API_KEY" ]