1
0
Fork 0
mirror of https://github.com/docker/setup-buildx-action.git synced 2024-11-22 00:45:05 +00:00

dockerfile: fix validate-yarn target

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi 2020-08-26 18:31:04 -07:00
parent c42add735e
commit d85dc22cf3

View file

@ -10,6 +10,7 @@ FROM scratch AS update-yarn
COPY --from=deps /src/yarn.lock /
FROM deps AS validate-yarn
COPY .git .git
RUN status=$(git status --porcelain -- yarn.lock); if [ -n "$status" ]; then echo $status; exit 1; fi
FROM deps AS base