Skip to content

Commit

Permalink
use release
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Cainelli <[email protected]>
  • Loading branch information
cainelli committed Dec 19, 2024
1 parent 3849c6c commit 3158e0d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build Envoy
run: |
./common/scripts/run.sh CC=clang CXX=clang++ bazel build --config=libc++ //:envoy
./common/scripts/run.sh cp bazel-bin/envoy out/envoy
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
Expand Down
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
FROM gcr.io/istio-testing/build-tools-proxy:release-1.24-latest AS builder

WORKDIR /work/

COPY . /work/

RUN make build_envoy_release

FROM istio/proxyv2:1.24.2

COPY ./out/envoy /usr/local/bin/
COPY --from=builder /work/bazel-bin/envoy /usr/local/bin/

0 comments on commit 3158e0d

Please sign in to comment.