How to set DOCKER_BUILDKIT=1 from .gitlab-ci.yml?
I have a working Dockerfile that requires execution with BuildKit support. Question: how can I build the dockerfile from gitlab-ci and set DOCKER_BUILDKIT=1 globally? .gitlab-ci.yml: image: docker:20 variables: DOCKER_DRIVER: overlay2 services: - docker:dind build: script: - docker build . Dockerfile:…