This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +52
-0
lines changed Expand file tree Collapse file tree 3 files changed +52
-0
lines changed Original file line number Diff line number Diff line change 1090
1090
" * 21 * * *"
1091
1091
]
1092
1092
},
1093
+ {
1094
+ "matchFiles" : [
1095
+ " ^tools/devbox/manifest.yaml$"
1096
+ ],
1097
+ "matchPackageNames" : [
1098
+ " jetpack-io/devbox"
1099
+ ],
1100
+ "schedule" : [
1101
+ " * 10,20 * * *"
1102
+ ]
1103
+ },
1093
1104
{
1094
1105
"matchFiles" : [
1095
1106
" ^tools/devcontainer/manifest.yaml$"
6720
6731
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
6721
6732
]
6722
6733
},
6734
+ {
6735
+ "datasourceTemplate" : " github-releases" ,
6736
+ "depNameTemplate" : " jetpack-io/devbox" ,
6737
+ "fileMatch" : [
6738
+ " ^tools/devbox/manifest.yaml$"
6739
+ ],
6740
+ "matchStrings" : [
6741
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
6742
+ ]
6743
+ },
6723
6744
{
6724
6745
"datasourceTemplate" : " github-tags" ,
6725
6746
"depNameTemplate" : " devcontainers/cli" ,
Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.5.2
2
+
3
+ ARG ref=main
4
+
5
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
6
+ ARG name
7
+ ARG version
8
+ RUN <<EOF
9
+ curl --silent --location --fail "https://github.com/jetpack-io/devbox/releases/download/${version}/devbox_${version}_linux_${alt_arch}.tar.gz" \
10
+ | tar --extract --gzip --directory="${prefix}${target}/bin/" --no-same-owner
11
+
12
+ "${prefix}${target}/bin/devbox" completion bash >"${prefix}${target}/share/bash-completion/completions/devbox"
13
+ "${prefix}${target}/bin/devbox" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/devbox.fish"
14
+ "${prefix}${target}/bin/devbox" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_devbox"
15
+ EOF
Original file line number Diff line number Diff line change
1
+ name : devbox
2
+ version : " 0.5.4"
3
+ check : ${binary} version
4
+ platforms :
5
+ - linux/amd64
6
+ - linux/arm64
7
+ tags :
8
+ - category/development
9
+ - lang/go
10
+ - type/cli
11
+ homepage : https://github.com/jetpack-io/devbox
12
+ description : Instant, easy, and predictable development environments
13
+ renovate :
14
+ datasource : github-releases
15
+ package : jetpack-io/devbox
16
+ priority : medium
You can’t perform that action at this time.
0 commit comments