|
| 1 | +# syntax=docker/dockerfile:1 |
| 2 | + |
| 3 | +ARG NODE_VERSION=12 |
| 4 | + |
| 5 | +FROM node:${NODE_VERSION}-alpine AS base |
| 6 | +RUN apk add --no-cache cpio findutils git |
| 7 | +WORKDIR /src |
| 8 | + |
| 9 | +FROM base AS deps |
| 10 | +RUN --mount=type=bind,target=.,rw \ |
| 11 | + --mount=type=cache,target=/src/node_modules \ |
| 12 | + yarn install && mkdir /vendor && cp yarn.lock /vendor |
| 13 | + |
| 14 | +FROM scratch AS vendor-update |
| 15 | +COPY --from=deps /vendor / |
| 16 | + |
| 17 | +FROM deps AS vendor-validate |
| 18 | +RUN --mount=type=bind,target=.,rw <<EOT |
| 19 | +set -e |
| 20 | +git add -A |
| 21 | +cp -rf /vendor/* . |
| 22 | +if [ -n "$(git status --porcelain -- yarn.lock)" ]; then |
| 23 | + echo >&2 'ERROR: Vendor result differs. Please vendor your package with "docker buildx bake vendor-update"' |
| 24 | + git status --porcelain -- yarn.lock |
| 25 | + exit 1 |
| 26 | +fi |
| 27 | +EOT |
| 28 | + |
| 29 | +FROM deps AS build |
| 30 | +RUN --mount=type=bind,target=.,rw \ |
| 31 | + --mount=type=cache,target=/src/node_modules \ |
| 32 | + yarn run build && mkdir /out && cp -Rf dist /out/ |
| 33 | + |
| 34 | +FROM scratch AS build-update |
| 35 | +COPY --from=build /out / |
| 36 | + |
| 37 | +FROM build AS build-validate |
| 38 | +RUN --mount=type=bind,target=.,rw <<EOT |
| 39 | +set -e |
| 40 | +git add -A |
| 41 | +cp -rf /out/* . |
| 42 | +if [ -n "$(git status --porcelain -- dist)" ]; then |
| 43 | + echo >&2 'ERROR: Build result differs. Please build first with "docker buildx bake build"' |
| 44 | + git status --porcelain -- dist |
| 45 | + exit 1 |
| 46 | +fi |
| 47 | +EOT |
| 48 | + |
| 49 | +FROM deps AS format |
| 50 | +RUN --mount=type=bind,target=.,rw \ |
| 51 | + --mount=type=cache,target=/src/node_modules \ |
| 52 | + yarn run format \ |
| 53 | + && mkdir /out && find . -name '*.ts' -not -path './node_modules/*' | cpio -pdm /out |
| 54 | + |
| 55 | +FROM scratch AS format-update |
| 56 | +COPY --from=format /out / |
| 57 | + |
| 58 | +FROM deps AS lint |
| 59 | +RUN --mount=type=bind,target=.,rw \ |
| 60 | + --mount=type=cache,target=/src/node_modules \ |
| 61 | + yarn run lint |
| 62 | + |
| 63 | +FROM deps AS test |
| 64 | +ENV RUNNER_TEMP=/tmp/github_runner |
| 65 | +ENV RUNNER_TOOL_CACHE=/tmp/github_tool_cache |
| 66 | +RUN --mount=type=bind,target=.,rw \ |
| 67 | + --mount=type=cache,target=/src/node_modules \ |
| 68 | + yarn run test --coverageDirectory=/tmp/coverage |
| 69 | + |
| 70 | +FROM scratch AS test-coverage |
| 71 | +COPY --from=test /tmp/coverage / |
0 commit comments