Add buildkit cache when running unit tests

Since running `go test` downloads dependencies we want to have them in
the builder cache
This commit is contained in:
Djordje Lukic 2020-05-22 13:26:30 +02:00
Родитель 39cd5036a6
Коммит 5d073028be
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -63,4 +63,5 @@ COPY --from=make-cross /api/bin/* .
FROM base as test
ENV CGO_ENABLED=0
RUN make -f builder.Makefile test
RUN --mount=id=build,type=cache,target=/root/.cache/go-build \
make -f builder.Makefile test