Spaces:
Runtime error
Runtime error
darpan-jain
commited on
Commit
•
1e89e38
1
Parent(s):
632b9b5
Add Dockerfile
Browse files- Dockerfile +16 -0
Dockerfile
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.10
|
2 |
+
LABEL authors="dxarpanjain"
|
3 |
+
|
4 |
+
# Install dependencies
|
5 |
+
RUN pip install --upgrade pip
|
6 |
+
RUN #pip install -r requirements.txt
|
7 |
+
|
8 |
+
# Copy the current directory contents into the container at /app
|
9 |
+
COPY . /app
|
10 |
+
|
11 |
+
# Set the working directory to /app
|
12 |
+
WORKDIR /app
|
13 |
+
|
14 |
+
# Run app.py when the container launches
|
15 |
+
RUN conda activate chat_exp
|
16 |
+
CMD ["python3", "app_chat.py"]
|