Use build args to capture build time data
Open
enhancement
- Dominant language
- Smarty
- Stars
- 22
- Forks
- 30
- PR merge metrics
- No merged PRs in 30d
Description
Acceptance Criteria:
* Use the `--build-args` flag when running `docker build` to pass in the following items (and more if needed)
* BUILD_DATE
* VERSION
You will need to do the following in the dockerfile to persist the data into the image:
```
ARG VERSION
ARG BUILD_DATE
ENV VERSION $VERSION
ENV BUILD_DATE $BUILD_DATE
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.