Spaces:
Runtime error
Runtime error
Xuan2060320350
commited on
Commit
•
18ce63f
1
Parent(s):
841933a
Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.11
|
2 |
+
RUN apt update
|
3 |
+
RUN apt install git
|
4 |
+
RUN git clone https://github.com/viopsa233/ChatSydney-react-zh-Hans-CN.git
|
5 |
+
WORKDIR "ChatSydney-react-zh-Hans-CN"
|
6 |
+
RUN pip install -r requirements.txt
|
7 |
+
EXPOSE 65432
|
8 |
+
CMD ["python", "main.py"]
|