Skip to content

Commit 3d9292c

Browse files
Move OPENTELEMETRY_CPP_VERSION back
1 parent be20498 commit 3d9292c

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

.env

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ CHECKOUT_SERVICE_PORT=5050
4747
CHECKOUT_SERVICE_ADDR=checkoutservice:${CHECKOUT_SERVICE_PORT}
4848

4949
# Currency Service
50-
OPENTELEMETRY_CPP_VERSION=1.13.0
5150
CURRENCY_SERVICE_PORT=7001
5251
CURRENCY_SERVICE_ADDR=currencyservice:${CURRENCY_SERVICE_PORT}
5352

docker-compose.minimal.yml

-2
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@ services:
129129
context: ./src/currencyservice
130130
cache_from:
131131
- ${IMAGE_NAME}:${IMAGE_VERSION}-currencyservice
132-
args:
133-
- OPENTELEMETRY_CPP_VERSION
134132
deploy:
135133
resources:
136134
limits:

docker-compose.yml

-2
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,6 @@ services:
160160
context: ./src/currencyservice
161161
cache_from:
162162
- ${IMAGE_NAME}:${IMAGE_VERSION}-currencyservice
163-
args:
164-
- OPENTELEMETRY_CPP_VERSION
165163
deploy:
166164
resources:
167165
limits:

src/currencyservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ FROM alpine:3.18 as builder
1818

1919
RUN apk update && apk add git cmake make g++ grpc-dev protobuf-dev linux-headers
2020

21-
ARG OPENTELEMETRY_CPP_VERSION
21+
ARG OPENTELEMETRY_CPP_VERSION=1.13.0
2222

2323
RUN git clone https://github.com/open-telemetry/opentelemetry-cpp \
2424
&& cd opentelemetry-cpp/ \

0 commit comments

Comments
 (0)