nxdev-org commited on
Commit
09fefdc
·
verified ·
1 Parent(s): 5b2a9db

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -26,7 +26,8 @@ RUN python3 -m venv /opt/venv
26
  # Add it to the PATH (this "activates" it for the rest of the Dockerfile)
27
  ENV PATH="/opt/venv/bin:$PATH"
28
 
29
- RUN pip install distutils
 
30
 
31
  # Toolkitの初期化
32
  RUN bin/init
 
26
  # Add it to the PATH (this "activates" it for the rest of the Dockerfile)
27
  ENV PATH="/opt/venv/bin:$PATH"
28
 
29
+ # Install setuptools (this provides the distutils functionality)
30
+ RUN pip install setuptools
31
 
32
  # Toolkitの初期化
33
  RUN bin/init