chore: use automated refreshed_at

This commit is contained in:
Tim Brust 2018-03-08 11:28:28 +01:00
parent 6aa18a3117
commit 2365e5bf71
No known key found for this signature in database
GPG Key ID: C171AF8F3B0A86B3
3 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,8 @@
FROM node:carbon-alpine@sha256:eec36f96b5a0d4685e5a9eebee19bfae37232d4fa93ca4fc218107676c6b1326
LABEL maintainer "Tim Brust <tim.brust@sinnerschrader.com>"
ENV REFRESHED_AT 2018-07-08
ARG REFRESHED_AT
ENV REFRESHED_AT $REFRESHED_AT
RUN apk add --no-cache \
git \

2
hooks/build Normal file
View File

@ -0,0 +1,2 @@
#!/bin/bash
docker build --build-arg REFRESHED_AT="$(date +%Y-%m-%d)" -f "$DOCKERFILE_PATH" -t "$IMAGE_NAME" .

View File

@ -1,5 +1,6 @@
{
"extends": [
"config:base"
"config:base",
"default:automergeDigest"
]
}