NahFam13 commited on
Commit
011f8e8
·
verified ·
1 Parent(s): c53f4e5

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -18
Dockerfile CHANGED
@@ -2,29 +2,15 @@
2
  FROM python:3.9
3
 
4
  # Install git
5
- RUN apt-get update && \
6
- apt-get install -y git
7
-
8
- # Clone the repository
9
- WORKDIR /code
10
- RUN git clone https://github.com/oobabooga/text-generation-webui.git .
11
 
12
  # Install any needed packages specified in requirements.txt
13
- RUN pip install --no-cache-dir --upgrade -r requirements.txt
14
-
15
- # Download the Miniconda installer script
16
- RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py310_23.3.1-0-Linux-x86_64.sh -O installer_files/miniconda_installer.sh
17
-
18
- # Make sure the installer script is executable
19
- RUN chmod +x installer_files/miniconda_installer.sh
20
 
21
- # Install Miniconda
22
- RUN ./installer_files/miniconda_installer.sh -b -p /code/installer_files/conda
23
 
24
- # Make sure the conda binary is executable and in the PATH
25
- ENV PATH="/code/installer_files/conda/bin:${PATH}"
26
 
27
- # Continue with any other setup you need...
28
 
29
  # Make sure the start script is executable
30
  RUN chmod +x start_linux.sh
 
2
  FROM python:3.9
3
 
4
  # Install git
5
+ RUN chmod +x update_linux.sh
6
+ CMD ["./update_linux.sh"]
 
 
 
 
7
 
8
  # Install any needed packages specified in requirements.txt
9
+ RUN pip install --no-cache-dir --upgrade -r requirements_cpu_only.txt
 
 
 
 
 
 
10
 
11
+ RUN python one_click.py
 
12
 
 
 
13
 
 
14
 
15
  # Make sure the start script is executable
16
  RUN chmod +x start_linux.sh