Skip to content

Commit

Permalink
dependabot: Monitor Dockerfile
Browse files Browse the repository at this point in the history
Also don't use `ARG` in the `FROM` instruction. Dependabot doesn't
handle it right now.

Ref: dependabot/dependabot-core#2057

Signed-off-by: Michi Mutsuzaki <[email protected]>
  • Loading branch information
michi-covalent committed Aug 23, 2022
1 parent c98eba6 commit 1f79da6
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,22 @@ updates:
rebase-strategy: disabled
labels:
- kind/enhancement

- package-ecosystem: docker
directory: /
schedule:
interval: daily
open-pull-requests-limit: 1
rebase-strategy: disabled
labels:
- kind/enhancement

- package-ecosystem: docker
directory: /
schedule:
interval: daily
target-branch: "v0.10"
open-pull-requests-limit: 1
rebase-strategy: disabled
labels:
- kind/enhancement
4 changes: 1 addition & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
# Copyright 2020-2021 Authors of Cilium
# SPDX-License-Identifier: Apache-2.0

ARG CILIUM_BUILDER_IMAGE=quay.io/cilium/cilium-builder:20ff0e6b01b9e5eeeedd6f334de80718a6b54835@sha256:9b38a14ca83ce1c081013974e082d37055523ca1d47543ba5be38b3575a6dc0f

FROM ${CILIUM_BUILDER_IMAGE} as builder
FROM quay.io/cilium/cilium-builder:20ff0e6b01b9e5eeeedd6f334de80718a6b54835@sha256:9b38a14ca83ce1c081013974e082d37055523ca1d47543ba5be38b3575a6dc0f as builder
WORKDIR /go/src/github.com/cilium/cilium-cli
COPY . .
RUN make
Expand Down

0 comments on commit 1f79da6

Please sign in to comment.