Spaces:
Paused
Paused
Commit
·
6aed2ff
1
Parent(s):
d0a9f57
Update Dockerfile
Browse files- Dockerfile +2 -6
Dockerfile
CHANGED
@@ -7,10 +7,6 @@ COPY ./src/* /app
|
|
7 |
RUN pip3 install -r requirements.txt
|
8 |
|
9 |
ENV PORT=5500
|
10 |
-
EXPOSE
|
11 |
|
12 |
-
|
13 |
-
#shell form necessary
|
14 |
-
SHELL ["python3","/app/FreeGPT4_Server.py"]
|
15 |
-
ENTRYPOINT ["python3","/app/FreeGPT4_Server.py"]
|
16 |
-
CMD ["--cookie-file","/cookies.json"]
|
|
|
7 |
RUN pip3 install -r requirements.txt
|
8 |
|
9 |
ENV PORT=5500
|
10 |
+
EXPOSE $PORT/tcp
|
11 |
|
12 |
+
ENTRYPOINT ["python3", "/app/FreeGPT4_Server.py", "--cookie-file", "/app/cookies.json"]
|
|
|
|
|
|
|
|