Skip to content

Commit

Permalink
release/ci: Fix code scanning pin alert
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax committed Sep 19, 2024
1 parent 322cda1 commit 1affbfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/Dockerfile-envoy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG BUILD_OS=ubuntu
ARG BUILD_TAG=22.04@sha256:adbb90115a21969d2fe6fa7f9af4253e16d45f8d4c1e930182610c4731962658
ARG BUILD_OS
ARG BUILD_TAG
ARG ENVOY_VRP_BASE_IMAGE=envoy-base


Expand All @@ -13,7 +13,7 @@ ADD "${TARGETPLATFORM}/release.tar.zst" /usr/local/bin/


# STAGE: envoy-base
FROM ${BUILD_OS}:${BUILD_TAG} AS envoy-base
FROM ${BUILD_OS:-ubuntu}:${BUILD_TAG:-22.04@sha256:adbb90115a21969d2fe6fa7f9af4253e16d45f8d4c1e930182610c4731962658} AS envoy-base
ENV DEBIAN_FRONTEND=noninteractive
EXPOSE 10000
CMD ["envoy", "-c", "/etc/envoy/envoy.yaml"]
Expand Down

0 comments on commit 1affbfb

Please sign in to comment.