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 ```
Acceptance Criteria:
--build-argsflag when runningdocker buildto pass in the following items (and more if needed)You will need to do the following in the dockerfile to persist the data into the image: