From 3b5ea9047ffdc3d1b04cfc843b8b3e6f6606a3e6 Mon Sep 17 00:00:00 2001 From: Niapoll Date: Sat, 14 Oct 2023 15:39:18 +0400 Subject: Change docker-compose.yml to run api and gui services simultaneously --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Dockerfile') 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 -- cgit v1.2.3