Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/front-proxy/Dockerfile-jaeger-service
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM envoyproxy/envoy-alpine-dev:latest
FROM envoyproxy/envoy-dev:latest

RUN apk update && apk add py3-pip bash curl
RUN apt-get update && apt-get -q install --no-install-recommends -y python3-pip curl
RUN pip3 install -q Flask==0.11.1 requests==2.18.4
RUN mkdir /code
ADD ./service.py /code
Expand Down
4 changes: 2 additions & 2 deletions examples/front-proxy/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM envoyproxy/envoy-alpine-dev:latest
FROM envoyproxy/envoy-dev:latest

RUN apk update && apk add py3-pip bash curl
RUN apt-get update && apt-get -q install --no-install-recommends -y python3-pip curl
RUN pip3 install -q Flask==0.11.1 requests==2.18.4
RUN mkdir /code
ADD ./service.py /code
Expand Down