Teddy Xinyuan Chen
commited on
Commit
·
455f76e
1
Parent(s):
a0284f3
2024-10-08T21-19-37Z
Browse files- Dockerfile +3 -1
- requirements.txt +63 -0
Dockerfile
CHANGED
@@ -8,7 +8,9 @@ WORKDIR /app
|
|
8 |
COPY . /app
|
9 |
|
10 |
# Install any needed packages specified in requirements-dev.txt
|
11 |
-
RUN pip install --no-cache-dir -r requirements-dev.txt
|
|
|
|
|
12 |
|
13 |
# Make port 8000 available to the world outside this container
|
14 |
EXPOSE 8000
|
|
|
8 |
COPY . /app
|
9 |
|
10 |
# Install any needed packages specified in requirements-dev.txt
|
11 |
+
# RUN pip install --no-cache-dir -r requirements-dev.txt
|
12 |
+
# my frozen requirements.txt
|
13 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
14 |
|
15 |
# Make port 8000 available to the world outside this container
|
16 |
EXPOSE 8000
|
requirements.txt
ADDED
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
annotated-types==0.7.0
|
2 |
+
anyio==4.6.0
|
3 |
+
asgiref==3.8.1
|
4 |
+
azure-core==1.31.0
|
5 |
+
azure-identity==1.16.1
|
6 |
+
black==24.10.0
|
7 |
+
bleach==6.1.0
|
8 |
+
brotli==1.1.0
|
9 |
+
certifi==2024.8.30
|
10 |
+
cffi==1.17.1
|
11 |
+
cfgv==3.4.0
|
12 |
+
charset-normalizer==3.3.2
|
13 |
+
click==8.1.7
|
14 |
+
coverage==7.6.1
|
15 |
+
cryptography==43.0.1
|
16 |
+
distlib==0.3.8
|
17 |
+
distro==1.9.0
|
18 |
+
django==4.2.7
|
19 |
+
django-environ==0.11.2
|
20 |
+
django-markdownify==0.9.5
|
21 |
+
filelock==3.16.1
|
22 |
+
h11==0.14.0
|
23 |
+
httpcore==1.0.6
|
24 |
+
httpx==0.27.2
|
25 |
+
identify==2.6.1
|
26 |
+
idna==3.10
|
27 |
+
iniconfig==2.0.0
|
28 |
+
jiter==0.6.1
|
29 |
+
markdown==3.7
|
30 |
+
msal==1.31.0
|
31 |
+
msal-extensions==1.2.0
|
32 |
+
mypy-extensions==1.0.0
|
33 |
+
nodeenv==1.9.1
|
34 |
+
openai==1.51.2
|
35 |
+
packaging==24.1
|
36 |
+
pathspec==0.12.1
|
37 |
+
platformdirs==4.3.6
|
38 |
+
pluggy==1.5.0
|
39 |
+
portalocker==2.10.1
|
40 |
+
pre-commit==4.0.1
|
41 |
+
psycopg2==2.9.9
|
42 |
+
pycparser==2.22
|
43 |
+
pydantic==2.9.2
|
44 |
+
pydantic-core==2.23.4
|
45 |
+
pyjwt==2.9.0
|
46 |
+
pytest==8.3.3
|
47 |
+
pytest-cov==5.0.0
|
48 |
+
pytest-django==4.9.0
|
49 |
+
pytest-dotenv==0.5.2
|
50 |
+
python-dotenv==1.0.1
|
51 |
+
pyyaml==6.0.2
|
52 |
+
requests==2.32.3
|
53 |
+
ruff==0.6.9
|
54 |
+
six==1.16.0
|
55 |
+
sniffio==1.3.1
|
56 |
+
sqlparse==0.5.1
|
57 |
+
tinycss2==1.2.1
|
58 |
+
tqdm==4.66.5
|
59 |
+
typing-extensions==4.12.2
|
60 |
+
urllib3==2.2.3
|
61 |
+
virtualenv==20.26.6
|
62 |
+
webencodings==0.5.1
|
63 |
+
whitenoise==6.6.0
|