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 +45
-0
lines changed Expand file tree Collapse file tree 3 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 4200
4200
" version: \" ?(?<currentValue>.*?)\" ?\\ n"
4201
4201
]
4202
4202
},
4203
+ {
4204
+ "datasourceTemplate" : " github-releases" ,
4205
+ "depNameTemplate" : " hashicorp/packer" ,
4206
+ "extractVersionTemplate" : " ^v(?<version>.+?)$" ,
4207
+ "fileMatch" : [
4208
+ " ^tools/packer/manifest.yaml$"
4209
+ ],
4210
+ "matchStrings" : [
4211
+ " version: \" ?(?<currentValue>.*?)\" ?\\ n"
4212
+ ]
4213
+ },
4203
4214
{
4204
4215
"datasourceTemplate" : " github-releases" ,
4205
4216
"depNameTemplate" : " jgm/pandoc" ,
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
+ url="https://releases.hashicorp.com/packer/${version}/packer_${version}_linux_${alt_arch}.zip"
10
+ filename="$(basename "${url}")"
11
+ curl --silent --location --fail --remote-name "${url}"
12
+ unzip -q -o -d "${prefix}${target}/bin" "${filename}"
13
+ echo "complete -C ${target}/bin/packer packer" >"${prefix}${target}/etc/profile.d/packer.sh"
14
+ EOF
Original file line number Diff line number Diff line change
1
+ # yaml-language-server: $schema=https://docker-setup.dille.io/schema.yaml
2
+ $schema : https://docker-setup.dille.io/schema.yaml
3
+ name : packer
4
+ version : " 1.9.1"
5
+ check : " "
6
+ platforms :
7
+ - linux/amd64
8
+ - linux/arm64
9
+ tags :
10
+ - org/hashicorp
11
+ - category/development
12
+ - lang/go
13
+ - type/cli
14
+ homepage : https://github.com/hashicorp/packer
15
+ description : Tool for creating identical machine images for multiple platforms from a single source configuration
16
+ renovate :
17
+ datasource : github-releases
18
+ package : hashicorp/packer
19
+ extractVersion : ^v(?<version>.+?)$
20
+ priority : low
You can’t perform that action at this time.
0 commit comments