-
Notifications
You must be signed in to change notification settings - Fork 127
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
Add to production sample #132
base: main
Are you sure you want to change the base?
Conversation
COPY ["package.json", "./"] | ||
RUN npm install --production | ||
|
||
ARG TEMPORAL_SERVER="host.docker.internal:7233" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why put these in args?
It's typically something you'd provide at container run time, not bake into the image since this image could be used in different environments.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not loving this sample.
It's not a complete production sample because it omits logging / metrics setup and has a lot of duplication with the mtls sample.
Adding instrumentation and more README updates in next PR. And then automated cloud test.