Skip to content

Commit

Permalink
Fix Makefile: shell interaction for docker-build (part 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
iburakov authored Jan 8, 2024
1 parent ffa9302 commit 64edcc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ docker-dev-build-for-linux-win:
docker build \
--target development \
-f ml/synthesis/Dockerfile \
--build-arg HOST_UID=$(id -u) \
--build-arg HOST_GID=$(id -g) \
--build-arg HOST_UID=$(shell id -u) \
--build-arg HOST_GID=$(shell id -g) \
-t nitta-dev \
.

Expand Down

0 comments on commit 64edcc4

Please sign in to comment.