Skip to content

Commit

Permalink
fix: also change entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrinux committed Mar 6, 2024
1 parent 732e984 commit 3bfb834
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Expand Up @@ -42,4 +42,4 @@ RUN if [ "$with_models" = "true" ]; then \
fi

EXPOSE 5000
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "::" ]
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "*" ]
2 changes: 1 addition & 1 deletion docker/arm.Dockerfile
Expand Up @@ -40,4 +40,4 @@ RUN if [ "$with_models" = "true" ]; then \
fi

EXPOSE 5000
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "::" ]
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "*" ]
2 changes: 1 addition & 1 deletion docker/cuda.Dockerfile
Expand Up @@ -42,4 +42,4 @@ RUN pip3 install Babel==2.12.1 && python3 scripts/compile_locales.py \
# ENV LD_LIBRARY_PATH=/usr/local/cuda/lib:/usr/local/cuda/lib64

EXPOSE 5000
ENTRYPOINT [ "libretranslate", "--host", "::" ]
ENTRYPOINT [ "libretranslate", "--host", "*" ]

0 comments on commit 3bfb834

Please sign in to comment.