-
Notifications
You must be signed in to change notification settings - Fork 0
Add Dockerfile for each service #19
Copy link
Copy link
Open
Labels
deploymentDeployment manifests (Kubernetes, Helm charts, Terraform) or rollout automationDeployment manifests (Kubernetes, Helm charts, Terraform) or rollout automationdockerDockerfiles, containerization scripts, or image-building configurationsDockerfiles, containerization scripts, or image-building configurations
Metadata
Metadata
Assignees
Labels
deploymentDeployment manifests (Kubernetes, Helm charts, Terraform) or rollout automationDeployment manifests (Kubernetes, Helm charts, Terraform) or rollout automationdockerDockerfiles, containerization scripts, or image-building configurationsDockerfiles, containerization scripts, or image-building configurations
• Write a
Dockerfilein eachcmd/<service>/directory:– Use
golang:1.18-alpineas the base.–
COPYonly the relevant files (or use multi‐stage build to produce a static binary).– Expose the necessary port (UDP + HTTP metrics).
• Verify that
docker build cmd/normalizerproduces a runnable image.