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
17 changes: 14 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,29 @@ updates:
- package-ecosystem: "cargo"
directories:
- "ninja-xtask"
- "ninja-build_rs"
schedule:
interval: "weekly"
cooldown:
default-days: 10
- package-ecosystem: "docker"
directory: "/"
# trust fedora to release images fast to fix CVEs
schedule:
interval: "daily"
- package-ecosystem: "docker"
directory: "/.devcontainer"
# this is our own image
schedule:
interval: "daily"
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
cooldown:
default-days: 10
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
interval: "weekly"
cooldown:
default-days: 10
8 changes: 3 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM fedora:latest@sha256:498c452f32a739b61f0ef215bce9924ebc4866cbe44710f58157d77723b7a6d2
FROM fedora:latest@sha256:43b29f65a41eb9c35e1cd5323e3bdf3b655c2357a9f4f1ff2f9c2798e5045d80

# ---
# Setup base system ...
Expand Down Expand Up @@ -95,12 +95,10 @@ WORKDIR /opt
RUN umask 0002 \
&& chmod a+x rustup/rustup-init \
&& rustup/rustup-init -v -y \
# beta & nightly add 2Gb each to the image, but I use them a lot ...
&& rustup toolchain install stable beta nightly \
# Don't bother with nightly, as pulling larger base image then updating is slower than just installing via updateContentCommand
&& rustup toolchain install stable \
&& rustup component add \
clippy \
llvm-tools \
llvm-tools-preview \
rustfmt \
rust-src \
&& cargo binstall --secure -y \
Expand Down