go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/server/cmd/envoy-cloudrun/Dockerfile (about) 1 # Copyright 2023 The LUCI Authors. All rights reserved. 2 # Use of this source code is governed under the Apache License, Version 2.0 3 # that can be found in the LICENSE file. 4 FROM envoyproxy/envoy:v1.26-latest 5 6 WORKDIR /app 7 8 COPY ./envoy.yaml . 9 10 # Validate the enovy configuration file. 11 RUN envoy --mode validate -c ./envoy.yaml 12 13 ENTRYPOINT ["envoy", "-c", "./envoy.yaml"]