sagar4tech commited on
Commit
3039926
·
verified ·
1 Parent(s): 1a90f96

Upload 3 files

Browse files
Files changed (3) hide show
  1. Dockerfile +31 -0
  2. compose-dev.yaml +12 -0
  3. requirements.txt +77 -0
Dockerfile ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9-slim
2
+
3
+
4
+ # Install git, gcc, and python3-dev
5
+ RUN apt-get update && apt-get install -y \
6
+ git \
7
+ gcc \
8
+ python3-dev
9
+
10
+ # Set the working directory inside the container
11
+ WORKDIR /app
12
+
13
+ # Copy the requirements file into the container
14
+ COPY requirements.txt .
15
+
16
+ # Install Python dependencies
17
+ RUN pip install --no-cache-dir -r requirements.txt
18
+
19
+ # Copy the entire contents of the 'app' directory into the container
20
+ COPY app /app
21
+
22
+ # Change directory to the 'Model' directory
23
+ WORKDIR /app
24
+
25
+ # Expose port 7000 for the Gradio UI
26
+ EXPOSE 7000
27
+
28
+ # Command to run the Gradio UI
29
+ CMD ["python", "main.py"]
30
+
31
+
compose-dev.yaml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ services:
2
+ app:
3
+ entrypoint:
4
+ - sleep
5
+ - infinity
6
+ image: docker/dev-environments-default:stable-1
7
+ init: true
8
+ volumes:
9
+ - type: bind
10
+ source: /var/run/docker.sock
11
+ target: /var/run/docker.sock
12
+
requirements.txt ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ accelerate==0.29.2
2
+ aiofiles==23.2.1
3
+ altair==5.3.0
4
+ annotated-types==0.6.0
5
+ anyio==4.3.0
6
+ attrs==23.2.0
7
+ certifi==2024.2.2
8
+ charset-normalizer==3.3.2
9
+ click==8.1.7
10
+ contourpy==1.2.1
11
+ cycler==0.12.1
12
+ diffusers @ git+https://github.com/huggingface/diffusers@08bf7545070764d41637e90290ca9b92b392263e
13
+ fastapi==0.110.1
14
+ ffmpy==0.3.2
15
+ filelock==3.13.4
16
+ fonttools==4.51.0
17
+ fsspec==2024.3.1
18
+ gradio==4.26.0
19
+ gradio_client==0.15.1
20
+ h11==0.14.0
21
+ httpcore==1.0.5
22
+ httpx==0.27.0
23
+ huggingface-hub==0.22.2
24
+ idna==3.7
25
+ importlib_metadata==7.1.0
26
+ importlib_resources==6.4.0
27
+ Jinja2==3.1.3
28
+ jsonschema==4.21.1
29
+ jsonschema-specifications==2023.12.1
30
+ kiwisolver==1.4.5
31
+ markdown-it-py==3.0.0
32
+ MarkupSafe==2.1.5
33
+ matplotlib==3.8.4
34
+ mdurl==0.1.2
35
+ mpmath==1.3.0
36
+ numpy==1.26.4
37
+ orjson==3.10.0
38
+ packaging==24.0
39
+ pandas==2.2.2
40
+ pillow==10.3.0
41
+ psutil==5.9.8
42
+ pydantic==2.7.0
43
+ pydantic_core==2.18.1
44
+ pydub==0.25.1
45
+ Pygments==2.17.2
46
+ pyparsing==3.1.2
47
+ python-dateutil==2.9.0.post0
48
+ python-multipart==0.0.9
49
+ pytz==2024.1
50
+ PyYAML==6.0.1
51
+ referencing==0.34.0
52
+ regex==2023.12.25
53
+ requests==2.31.0
54
+ rich==13.7.1
55
+ rpds-py==0.18.0
56
+ ruff==0.3.7
57
+ safetensors==0.4.2
58
+ semantic-version==2.10.0
59
+ shellingham==1.5.4
60
+ six==1.16.0
61
+ sniffio==1.3.1
62
+ starlette==0.37.2
63
+ sympy==1.12
64
+ tokenizers==0.15.2
65
+ tomlkit==0.12.0
66
+ toolz==0.12.1
67
+ torch==2.2.2
68
+ torchvision==0.17.2
69
+ tqdm==4.66.2
70
+ transformers==4.39.3
71
+ typer==0.12.3
72
+ typing_extensions==4.11.0
73
+ tzdata==2024.1
74
+ urllib3==2.2.1
75
+ uvicorn==0.29.0
76
+ websockets==11.0.3
77
+ zipp==3.18.1