Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
wildum committed Oct 13, 2023
1 parent ed916b2 commit 2f6f135
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion integration-tests/configs/otel-gen-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -o main main.go
FROM alpine:3.18
COPY --from=build /app/main /app/main
COPY --from=build /app/main /app/main
CMD ["/app/main"]
8 changes: 4 additions & 4 deletions integration-tests/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ services:

demo-client:
build:
dockerfile: Dockerfile
context: ./configs/otel-gen-client
context: ..
dockerfile: ./configs/otel-gen-client/Dockerfile
restart: always
environment:
- OTEL_EXPORTER_OTLP_ENDPOINT=otel-collector:4317
Expand All @@ -42,8 +42,8 @@ services:

demo-server:
build:
dockerfile: Dockerfile
context: ./configs/otel-gen-server
context: ..
dockerfile: ./configs/otel-gen-server/Dockerfile
restart: always
environment:
- OTEL_EXPORTER_OTLP_ENDPOINT=otel-collector:4317
Expand Down

0 comments on commit 2f6f135

Please sign in to comment.