Skip to content

Commit

Permalink
rm
Browse files Browse the repository at this point in the history
  • Loading branch information
latentvector committed May 4, 2024
1 parent 788211e commit ff08d41
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ RUN pip install -r requirements.txt
RUN apt-get install -y nodejs npm
RUN npm install -g pm2
COPY . /commune
ENTRYPOINT ["pip", "install", "-e", "./", "tail", "-f", "/dev/null"]
RUN pip install -e ./
ENTRYPOINT [ "tail", "-f", "/dev/null"]
2 changes: 0 additions & 2 deletions bin/c

This file was deleted.

2 changes: 1 addition & 1 deletion commune/module/module.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import inspect
import os
import inspect
import concurrent
import threading
from copy import deepcopy
Expand Down
2 changes: 1 addition & 1 deletion scripts/nvidia_docker_setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Add the package repositories
ww# Add the package repositories
distribution=$(. /etc/os-release;echo $ID$VERSION_ID)
curl -s -L https://nvidia.github.io/nvidia-docker/gpgkey | sudo apt-key add -
curl -s -L https://nvidia.github.io/nvidia-docker/$distribution/nvidia-docker.list | sudo tee /etc/apt/sources.list.d/nvidia-docker.list
Expand Down
3 changes: 3 additions & 0 deletions scripts/rm_sudo_docker.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
groupadd docker
usermod -aG docker $USER
chmod 666 /var/run/docker.sock

0 comments on commit ff08d41

Please sign in to comment.