mirror of
https://github.com/LibreTranslate/LibreTranslate.git
synced 2024-11-16 12:30:11 +01:00
14 lines
191 B
Docker
14 lines
191 B
Docker
FROM python:3.8
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
COPY . .
|
|
|
|
# Install package from source code
|
|
RUN pip install .
|
|
|
|
EXPOSE 5000
|
|
ENTRYPOINT [ "libretranslate", "--host", "0.0.0.0" ]
|