rogerxavier
commited on
Commit
•
5f83a7a
1
Parent(s):
db7e5d1
Update Dockerfile
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
|
2 |
|
3 |
RUN apt update && apt install -y sudo imagemagick
|
4 |
# RUN apt upgrade -y
|
@@ -14,9 +14,11 @@ COPY requirements.txt .
|
|
14 |
RUN pip install -r requirements.txt
|
15 |
|
16 |
COPY server.py .
|
17 |
-
|
|
|
18 |
|
19 |
EXPOSE 7860
|
20 |
|
|
|
21 |
|
22 |
-
CMD ["python", "
|
|
|
1 |
+
FROM guillaumeai/ast:ap2404_v1-210ik
|
2 |
|
3 |
RUN apt update && apt install -y sudo imagemagick
|
4 |
# RUN apt upgrade -y
|
|
|
14 |
RUN pip install -r requirements.txt
|
15 |
|
16 |
COPY server.py .
|
17 |
+
COPY compo-singleone-v1-dev-acc.py .
|
18 |
+
COPY compo-singleone-v2-dev-acc.py .
|
19 |
|
20 |
EXPOSE 7860
|
21 |
|
22 |
+
#compo-singleone-v1-dev-acc.py
|
23 |
|
24 |
+
CMD ["python", "compo-singleone-v2-dev-acc.py"]
|