Commit d4cb8f2 1 parent 0315db4 commit d4cb8f2 Copy full SHA for d4cb8f2
File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,14 @@ ARG USERNAME=app
21
21
ARG USER_UID=1000
22
22
ARG USER_GID=$USER_UID
23
23
24
+ LABEL org.opencontainers.image.authors="Calloway Project https://github.com/callowayproject"
25
+ LABEL org.opencontainers.image.created=2024-10-12T09:38:00Z
26
+ LABEL org.opencontainers.image.url=https://github.com/callowayproject/bump-my-version
27
+ LABEL org.opencontainers.image.documentation=https://callowayproject.github.io/bump-my-version
28
+ LABEL org.opencontainers.image.source=https://github.com/callowayproject/bump-my-version
29
+ LABEL org.opencontainers.image.version=0.27.0
30
+ LABEL org.opencontainers.image.licenses=MIT
31
+
24
32
# Add a non-root user and group
25
33
RUN groupadd --gid $USER_GID $USERNAME \
26
34
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME
Original file line number Diff line number Diff line change @@ -289,6 +289,15 @@ filename = "action.yml"
289
289
search = " bump-my-version=={current_version}"
290
290
replace = " bump-my-version=={new_version}"
291
291
292
+ [[tool .bumpversion .files ]]
293
+ filename = " Dockerfile"
294
+ search = " created=\\ d{{4}}-\\ d{{2}}-\\ d{{2}}T\\ d{{2}}:\\ d{{2}}:\\ d{{2}}Z"
295
+ replace = " created={utcnow:%Y-%m-%dT%H:%M:%SZ}"
296
+ regex = true
297
+
298
+ [[tool .bumpversion .files ]]
299
+ filename = " Dockerfile"
300
+
292
301
[tool .pydoclint ]
293
302
style = " google"
294
303
exclude = ' \.git|tests'
You can’t perform that action at this time.
0 commit comments