Skip to content

Commit

Permalink
ci: custom docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrery committed Dec 19, 2024
1 parent e7e62d3 commit 3ad22b5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/concrete_ml_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,14 @@ jobs:
# Build the docker image with specific tag
cd concrete-ml
make docker_build DEV_DOCKER_PYTHON=py38
# Build the docker image with specific tag
cd concrete-ml
DOCKER_BUILDKIT=1 docker build \
--build-arg BUILD_UID=$(id -u) \
--build-arg BUILD_GID=$(id -g) \
--pull \
-t concrete-ml-dev:py38 \
-f docker/Dockerfile.dev .
# Run the tests
docker run --rm \
Expand Down

0 comments on commit 3ad22b5

Please sign in to comment.