Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f26d9b4eec | |||
| 570747cdc2 | |||
| 98a5059251 | |||
|
0f7b3336b8
|
|||
|
713dade453
|
|||
|
566de5e6fc
|
|||
|
7cdb4fa89d
|
|||
|
2d71b41f95
|
|||
|
318f4d538e
|
|||
|
85c627fc7c
|
|||
|
7fc5d28475
|
|||
|
17d8449692
|
|||
| 5b87dce005 | |||
| 71c6269fed | |||
|
63388ba586
|
@@ -3,7 +3,6 @@ name: Docker Build and Push
|
|||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '30 3 * * 3'
|
- cron: '30 3 * * 3'
|
||||||
|
|
||||||
|
|||||||
+2
-1
@@ -1,8 +1,9 @@
|
|||||||
FROM python:3.7-alpine
|
FROM python:3.14-alpine
|
||||||
|
|
||||||
ARG BUILD_DATE
|
ARG BUILD_DATE
|
||||||
ARG VCS_REF
|
ARG VCS_REF
|
||||||
ARG VERSION
|
ARG VERSION
|
||||||
|
ARG ANSIBLE_REVIEW_VERSION=0.13.9
|
||||||
|
|
||||||
# hadolint ignore=DL3018
|
# hadolint ignore=DL3018
|
||||||
RUN apk --no-cache add --virtual build-dependencies \
|
RUN apk --no-cache add --virtual build-dependencies \
|
||||||
|
|||||||
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"gitlabci": {
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
"customManagers": [
|
||||||
|
{
|
||||||
|
"customType": "regex",
|
||||||
|
"description": "Track ansible-review pip version from ARG in Dockerfile",
|
||||||
|
"managerFilePatterns": ["/^Dockerfile$/"],
|
||||||
|
"matchStrings": ["ARG ANSIBLE_REVIEW_VERSION=(?<currentValue>[\\d.]+)\\n"],
|
||||||
|
"depNameTemplate": "ansible-review",
|
||||||
|
"datasourceTemplate": "pypi"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user