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 .github/workflows/codeql-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@75f07e7ab2ee63cba88752d8c696324e4df67466
# Override language selection by uncommenting this and choosing your languages
with:
languages: cpp
Expand All @@ -52,4 +52,4 @@ jobs:
git clean -xdf

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@75f07e7ab2ee63cba88752d8c696324e4df67466
4 changes: 2 additions & 2 deletions .github/workflows/codeql-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
uses: github/codeql-action/init@75f07e7ab2ee63cba88752d8c696324e4df67466
# Override language selection by uncommenting this and choosing your languages
with:
languages: cpp
Expand Down Expand Up @@ -63,4 +63,4 @@ jobs:

- name: Perform CodeQL Analysis
if: env.BUILD_TARGETS != ''
uses: github/codeql-action/analyze@v1
uses: github/codeql-action/analyze@75f07e7ab2ee63cba88752d8c696324e4df67466
4 changes: 2 additions & 2 deletions examples/cache/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM envoyproxy/envoy-alpine-dev:latest

RUN apk update && apk add py3-pip bash curl
RUN pip3 install -q Flask==0.11.1 requests==2.18.4 pyyaml
RUN apk update && apk add py3-pip
RUN pip3 install -q Flask==2.0.3 pyyaml
RUN mkdir /code
COPY ./start_service.sh /usr/local/bin/start_service.sh
COPY ./service-envoy.yaml /etc/service-envoy.yaml
Expand Down
4 changes: 2 additions & 2 deletions examples/cors/backend/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM envoyproxy/envoy-alpine-dev:latest

RUN apk update && apk add py3-pip bash
RUN pip3 install -q Flask==0.11.1
RUN apk update && apk add py3-pip
RUN pip3 install -q Flask==2.0.3
RUN mkdir /code
ADD ./service.py /code/
ADD ./start_service.sh /usr/local/bin/start_service.sh
Expand Down
4 changes: 2 additions & 2 deletions examples/cors/frontend/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM envoyproxy/envoy-alpine-dev:latest

RUN apk update && apk add py3-pip bash
RUN pip3 install -q Flask==0.11.1
RUN apk update && apk add py3-pip
RUN pip3 install -q Flask==2.0.3
RUN mkdir /code
ADD ./service.py ./index.html /code/
ADD ./start_service.sh /usr/local/bin/start_service.sh
Expand Down
4 changes: 2 additions & 2 deletions examples/csrf/crosssite/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM envoyproxy/envoy-alpine-dev:latest

RUN apk update && apk add py3-pip bash
RUN pip3 install -q Flask==0.11.1
RUN apk update && apk add py3-pip
RUN pip3 install -q Flask==2.0.3
RUN mkdir /code
ADD ./crosssite/service.py ./index.html /code/
ADD ./start_service.sh /usr/local/bin/start_service.sh
Expand Down
4 changes: 2 additions & 2 deletions examples/csrf/samesite/Dockerfile-service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM envoyproxy/envoy-alpine-dev:latest

RUN apk update && apk add py3-pip bash
RUN pip3 install -q Flask==0.11.1
RUN apk update && apk add py3-pip
RUN pip3 install -q Flask==2.0.3
RUN mkdir /code
ADD ./samesite/service.py ./index.html /code/
ADD ./start_service.sh /usr/local/bin/start_service.sh
Expand Down
2 changes: 1 addition & 1 deletion examples/double-proxy/Dockerfile-app
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM python:3.8-alpine

RUN apk update && apk add postgresql-dev gcc python3-dev musl-dev
RUN pip3 install -q Flask==0.11.1 requests==2.18.4 psycopg2-binary
RUN pip3 install -q Flask==2.0.3 requests==2.18.4 psycopg2-binary
RUN mkdir /code
ADD ./service.py /code
ENTRYPOINT ["python3", "/code/service.py"]
2 changes: 1 addition & 1 deletion examples/dynamic-config-cp/Dockerfile-control-plane
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ FROM golang
RUN apt-get -y update && apt-get install -y -qq --no-install-recommends netcat
RUN git clone https://github.com/envoyproxy/go-control-plane
ADD ./resource.go /go/go-control-plane/internal/example/resource.go
RUN cd go-control-plane && make bin/example
RUN cd go-control-plane && git checkout b4adc3bb5fe5288bff01cd452dad418ef98c676e && make bin/example
WORKDIR /go/go-control-plane
2 changes: 1 addition & 1 deletion examples/ext_authz/upstream/service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM python:3-alpine

RUN pip3 install -q Flask==0.11.1
RUN pip3 install -q Flask==2.0.3
COPY . ./app
CMD ["python3", "/app/service/server.py"]
6 changes: 3 additions & 3 deletions examples/front-proxy/Dockerfile-jaeger-service
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM envoyproxy/envoy-alpine-dev:latest
FROM envoyproxy/envoy-dev:latest

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

RUN apk update && apk add py3-pip bash curl
RUN pip3 install -q Flask==0.11.1 requests==2.18.4
RUN apt-get update && apt-get -q install --no-install-recommends -y python3-pip curl
RUN pip3 install -q Flask==2.0.3 requests==2.18.4
RUN mkdir /code
ADD ./service.py /code
ADD ./start_service.sh /usr/local/bin/start_service.sh
Expand Down
5 changes: 2 additions & 3 deletions examples/load-reporting-service/Dockerfile-http-server
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
FROM envoyproxy/envoy-alpine-dev:latest

RUN apk update && apk add py3-pip bash curl
RUN apk update && apk add py3-pip
RUN pip3 install -q Flask==2.0.3
RUN mkdir /code
ADD ./start_service.sh /usr/local/bin/start_service.sh
COPY . ./code

RUN pip3 install -q Flask==0.11.1

RUN chmod u+x /usr/local/bin/start_service.sh
ENTRYPOINT ["/bin/sh", "/usr/local/bin/start_service.sh"]