summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiapoll <Kolya21082001@gmail.com>2023-10-14 13:39:18 +0200
committerNiapoll <Kolya21082001@gmail.com>2023-10-14 13:39:18 +0200
commit3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6 (patch)
tree63580bdca60d29284ba81f59a974d10c42a66d18
parentAdd publish-workflow.yaml (diff)
downloadgpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.tar
gpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.tar.gz
gpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.tar.bz2
gpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.tar.lz
gpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.tar.xz
gpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.tar.zst
gpt4free-3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6.zip
-rw-r--r--Dockerfile6
-rw-r--r--docker-compose.yml15
2 files changed, 13 insertions, 8 deletions
diff --git a/Dockerfile b/Dockerfile
index a4ab3733..3cb86bec 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -26,8 +26,8 @@ RUN pip install --upgrade pip && pip install -r requirements.txt
# This may include all code, assets, and configuration files required to run the application.
COPY . /app/
-# Expose port 1337
-EXPOSE 1337
+# Expose port 80 and 1337
+EXPOSE 80 1337
# Define the default command to run the app using Python's module mode.
-CMD ["python", "-m", "g4f.api.run"] \ No newline at end of file
+ENTRYPOINT ["python", "-m", "g4f.cli"] \ No newline at end of file
diff --git a/docker-compose.yml b/docker-compose.yml
index b044ed81..0ecceefd 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,13 +1,18 @@
version: '3'
services:
- gpt4free:
+ gpt4free-api: &gpt4free
+ image: gpt4free:latest
build:
context: .
dockerfile: Dockerfile
- volumes:
- - .:/app
+ cache_from:
+ - gpt4free:latest
ports:
- '1337:1337'
- environment:
- - PYTHONUNBUFFERED=1 \ No newline at end of file
+ command: api
+ gpt4free-gui:
+ <<: *gpt4free
+ ports:
+ - '8080:80'
+ command: gui \ No newline at end of file