summaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorTekky <98614666+xtekky@users.noreply.github.com>2023-10-14 15:33:41 +0200
committerGitHub <noreply@github.com>2023-10-14 15:33:41 +0200
commit1baeaf5abb5a8df5ff77162e5d5f34865c083d88 (patch)
tree63580bdca60d29284ba81f59a974d10c42a66d18 /Dockerfile
parentg4f `v-0.1.6.3` (diff)
parentChange docker-compose.yml to run api and gui services simultaneously (diff)
downloadgpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.tar
gpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.tar.gz
gpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.tar.bz2
gpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.tar.lz
gpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.tar.xz
gpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.tar.zst
gpt4free-1baeaf5abb5a8df5ff77162e5d5f34865c083d88.zip
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 3 insertions, 3 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