🔧 Copied self hosted docker apps
This commit is contained in:
parent
36943e27da
commit
abc55d8ed5
209 changed files with 58596 additions and 0 deletions
46
self_host/LibreTranslate/docker/Dockerfile
Normal file
46
self_host/LibreTranslate/docker/Dockerfile
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
FROM python:3.11.11-slim-bullseye AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get -qqq install --no-install-recommends -y pkg-config gcc g++ \
|
||||
&& apt-get upgrade --assume-yes \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt
|
||||
|
||||
RUN python -mvenv venv && ./venv/bin/pip install --no-cache-dir --upgrade pip
|
||||
|
||||
COPY . .
|
||||
|
||||
# Install package from source code, compile translations
|
||||
RUN ./venv/bin/pip install Babel==2.12.1 && ./venv/bin/python scripts/compile_locales.py \
|
||||
&& ./venv/bin/pip install torch==2.2.0 --extra-index-url https://download.pytorch.org/whl/cpu \
|
||||
&& ./venv/bin/pip install "numpy<2" \
|
||||
&& ./venv/bin/pip install . \
|
||||
&& ./venv/bin/pip cache purge
|
||||
|
||||
FROM python:3.11.11-slim-bullseye
|
||||
|
||||
ARG with_models=false
|
||||
ARG models=""
|
||||
|
||||
RUN addgroup --system --gid 1032 libretranslate && adduser --system --uid 1032 libretranslate && mkdir -p /home/libretranslate/.local && chown -R libretranslate:libretranslate /home/libretranslate/.local
|
||||
USER libretranslate
|
||||
|
||||
COPY --from=builder --chown=1032:1032 /app /app
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=builder --chown=1032:1032 /app/venv/bin/ltmanage /usr/bin/
|
||||
|
||||
RUN if [ "$with_models" = "true" ]; then \
|
||||
# initialize the language models
|
||||
if [ ! -z "$models" ]; then \
|
||||
./venv/bin/python scripts/install_models.py --load_only_lang_codes "$models"; \
|
||||
else \
|
||||
./venv/bin/python scripts/install_models.py; \
|
||||
fi \
|
||||
fi
|
||||
|
||||
EXPOSE 5000
|
||||
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "*" ]
|
||||
44
self_host/LibreTranslate/docker/arm.Dockerfile
Normal file
44
self_host/LibreTranslate/docker/arm.Dockerfile
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
FROM arm64v8/python:3.11.11-slim-bullseye as builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get -qqq install --no-install-recommends -y pkg-config gcc g++ \
|
||||
&& apt-get upgrade --assume-yes \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt
|
||||
|
||||
RUN python -mvenv venv && ./venv/bin/pip install --no-cache-dir --upgrade pip
|
||||
|
||||
COPY . .
|
||||
|
||||
# Install package from source code, compile translations
|
||||
RUN ./venv/bin/pip install Babel==2.12.1 && ./venv/bin/python scripts/compile_locales.py \
|
||||
&& ./venv/bin/pip install torch==2.0.1 --extra-index-url https://download.pytorch.org/whl/cpu \
|
||||
&& ./venv/bin/pip install "numpy<2" \
|
||||
&& ./venv/bin/pip install . \
|
||||
&& ./venv/bin/pip cache purge
|
||||
|
||||
FROM arm64v8/python:3.11.11-slim-bullseye
|
||||
|
||||
ARG with_models=false
|
||||
ARG models=""
|
||||
|
||||
RUN addgroup --system --gid 1032 libretranslate && adduser --system --uid 1032 libretranslate && mkdir -p /home/libretranslate/.local && chown -R libretranslate:libretranslate /home/libretranslate/.local
|
||||
USER libretranslate
|
||||
|
||||
COPY --from=builder --chown=1032:1032 /app /app
|
||||
WORKDIR /app
|
||||
|
||||
RUN if [ "$with_models" = "true" ]; then \
|
||||
# initialize the language models
|
||||
if [ ! -z "$models" ]; then \
|
||||
./venv/bin/python scripts/install_models.py --load_only_lang_codes "$models"; \
|
||||
else \
|
||||
./venv/bin/python scripts/install_models.py; \
|
||||
fi \
|
||||
fi
|
||||
|
||||
EXPOSE 5000
|
||||
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "*" ]
|
||||
46
self_host/LibreTranslate/docker/cuda.Dockerfile
Normal file
46
self_host/LibreTranslate/docker/cuda.Dockerfile
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
FROM nvidia/cuda:12.4.1-devel-ubuntu20.04
|
||||
|
||||
ENV ARGOS_DEVICE_TYPE auto
|
||||
ARG with_models=false
|
||||
ARG models=""
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get -qqq install --no-install-recommends -y libicu-dev libaspell-dev libcairo2 libcairo2-dev pkg-config gcc g++ python3.8-dev python3-pip libpython3.8-dev\
|
||||
&& apt-get upgrade --assume-yes \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt
|
||||
|
||||
RUN pip3 install --no-cache-dir --upgrade pip && apt-get remove python3-pip --assume-yes
|
||||
|
||||
RUN ln -s /usr/bin/python3 /usr/bin/python
|
||||
|
||||
RUN pip3 install --no-cache-dir torch==1.12.0+cu116 -f https://download.pytorch.org/whl/torch_stable.html
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN if [ "$with_models" = "true" ]; then \
|
||||
# install only the dependencies first
|
||||
pip3 install --no-cache-dir -e .; \
|
||||
# initialize the language models
|
||||
if [ ! -z "$models" ]; then \
|
||||
./scripts/install_models.py --load_only_lang_codes "$models"; \
|
||||
else \
|
||||
./scripts/install_models.py; \
|
||||
fi \
|
||||
fi
|
||||
|
||||
# Install package from source code
|
||||
RUN pip3 install Babel==2.12.1 && python3 scripts/compile_locales.py \
|
||||
&& pip3 install "numpy<2" \
|
||||
&& pip3 install . \
|
||||
&& pip3 cache purge
|
||||
|
||||
# Depending on your cuda install you may need to uncomment this line to allow the container to access the cuda libraries
|
||||
# See: https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#post-installation-actions
|
||||
# ENV LD_LIBRARY_PATH=/usr/local/cuda/lib:/usr/local/cuda/lib64
|
||||
|
||||
EXPOSE 5000
|
||||
ENTRYPOINT [ "libretranslate", "--host", "*" ]
|
||||
105
self_host/LibreTranslate/docker/root-with-sshd.Dockerfile
Normal file
105
self_host/LibreTranslate/docker/root-with-sshd.Dockerfile
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
FROM python:3.11.11-slim-bullseye AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN <<EOF
|
||||
apt-get update -qq
|
||||
apt-get -qqq install --no-install-recommends -y pkg-config gcc g++
|
||||
apt-get upgrade --assume-yes
|
||||
apt-get clean
|
||||
rm -rf /var/lib/apt
|
||||
|
||||
python -mvenv venv
|
||||
./venv/bin/pip install --no-cache-dir --upgrade pip
|
||||
EOF
|
||||
|
||||
COPY . .
|
||||
|
||||
# Install package from source code, compile translations
|
||||
RUN <<EOF
|
||||
./venv/bin/pip install Babel==2.12.1
|
||||
./venv/bin/python scripts/compile_locales.py
|
||||
./venv/bin/pip install torch==2.2.0 --extra-index-url https://download.pytorch.org/whl/cpu
|
||||
./venv/bin/pip install "numpy<2"
|
||||
./venv/bin/pip install .
|
||||
./venv/bin/pip cache purge
|
||||
EOF
|
||||
|
||||
FROM python:3.11.11-slim-bullseye
|
||||
|
||||
ARG with_models=false
|
||||
ARG models=""
|
||||
|
||||
ARG root_password=""
|
||||
ARG api_key=""
|
||||
|
||||
ENV ENABLE_SSHD=${root_password:+true}
|
||||
|
||||
RUN <<EOF
|
||||
if [ "$ENABLE_SSHD" = "true" ]; then
|
||||
# sshd
|
||||
mkdir /var/run/sshd
|
||||
apt-get update -qq
|
||||
apt-get -qqq install --no-install-recommends -y openssh-server
|
||||
apt-get clean
|
||||
rm -rf /var/lib/apt
|
||||
|
||||
# sshd_config
|
||||
echo "root:${root_password}" | chpasswd
|
||||
sed -i 's/^#?\(PermitRootLogin\) .*$/\1 yes/' /etc/ssh/sshd_config
|
||||
sed -i 's/^#?\(PasswordAuthentication\) .*$/\1 yes/' /etc/ssh/sshd_config
|
||||
sed -i 's/^#?\(UsePAM\) .*$/\1 no/' /etc/ssh/sshd_config
|
||||
fi
|
||||
EOF
|
||||
|
||||
COPY --from=builder --chown=root:root /app /app
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=builder --chown=root:root /app/venv/bin/ltmanage /usr/bin/
|
||||
|
||||
RUN <<EOF
|
||||
if [ "$with_models" = "true" ]; then
|
||||
# initialize the language models
|
||||
if [ ! -z "$models" ]; then
|
||||
./venv/bin/python scripts/install_models.py --load_only_lang_codes "$models"
|
||||
else
|
||||
./venv/bin/python scripts/install_models.py
|
||||
fi
|
||||
fi
|
||||
EOF
|
||||
|
||||
RUN <<EOF
|
||||
if [ ! -z "$api_key" ]; then
|
||||
# initialize the API key database
|
||||
./venv/bin/python - <<'EOPython'
|
||||
from libretranslate.api_keys import Database
|
||||
from libretranslate.default_values import DEFAULT_ARGUMENTS as DEFARGS
|
||||
Database(DEFARGS['API_KEYS_DB_PATH'])
|
||||
EOPython
|
||||
|
||||
# initialize one API key
|
||||
ltmanage keys add 120 --key "$api_key"
|
||||
fi
|
||||
EOF
|
||||
|
||||
EXPOSE 22
|
||||
EXPOSE 5000
|
||||
|
||||
# entry point
|
||||
RUN <<EOF
|
||||
cat >'/app/start.sh' <<EOENTRY
|
||||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
if [ "$ENABLE_SSHD" = "true" ]; then
|
||||
service ssh start &
|
||||
fi
|
||||
|
||||
/app/venv/bin/libretranslate --host '*'
|
||||
|
||||
exit 0
|
||||
EOENTRY
|
||||
chmod 755 /app/start.sh
|
||||
EOF
|
||||
ENTRYPOINT [ "/app/start.sh" ]
|
||||
78
self_host/LibreTranslate/docker/user-with-api-key.Dockerfile
Normal file
78
self_host/LibreTranslate/docker/user-with-api-key.Dockerfile
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
FROM python:3.11.11-slim-bullseye AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN <<EOF
|
||||
apt-get update -qq
|
||||
apt-get -qqq install --no-install-recommends -y pkg-config gcc g++
|
||||
apt-get upgrade --assume-yes
|
||||
apt-get clean
|
||||
rm -rf /var/lib/apt
|
||||
|
||||
python -mvenv venv
|
||||
./venv/bin/pip install --no-cache-dir --upgrade pip
|
||||
EOF
|
||||
|
||||
COPY . .
|
||||
|
||||
# Install package from source code, compile translations
|
||||
RUN <<EOF
|
||||
./venv/bin/pip install Babel==2.12.1
|
||||
./venv/bin/python scripts/compile_locales.py
|
||||
./venv/bin/pip install torch==2.2.0 --extra-index-url https://download.pytorch.org/whl/cpu
|
||||
./venv/bin/pip install "numpy<2"
|
||||
./venv/bin/pip install .
|
||||
./venv/bin/pip cache purge
|
||||
EOF
|
||||
|
||||
FROM python:3.11.11-slim-bullseye
|
||||
|
||||
ARG with_models=false
|
||||
ARG models=""
|
||||
|
||||
ARG api_key=""
|
||||
|
||||
RUN <<EOF
|
||||
addgroup --system --gid 1032 libretranslate
|
||||
adduser --system --uid 1032 libretranslate
|
||||
mkdir -p /home/libretranslate/.local
|
||||
chown -R libretranslate:libretranslate /home/libretranslate/.local
|
||||
EOF
|
||||
|
||||
USER libretranslate
|
||||
|
||||
COPY --from=builder --chown=1032:1032 /app /app
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=builder --chown=1032:1032 /app/venv/bin/ltmanage /usr/bin/
|
||||
|
||||
RUN <<EOF
|
||||
if [ "$with_models" = "true" ]; then
|
||||
# initialize the language models
|
||||
if [ ! -z "$models" ]; then
|
||||
./venv/bin/python scripts/install_models.py --load_only_lang_codes "$models"
|
||||
else
|
||||
./venv/bin/python scripts/install_models.py
|
||||
fi
|
||||
fi
|
||||
EOF
|
||||
|
||||
RUN <<EOF
|
||||
if [ ! -z "$api_key" ]; then
|
||||
# initialize the API key database
|
||||
./venv/bin/python - <<'EOPython'
|
||||
from libretranslate.api_keys import Database
|
||||
from libretranslate.default_values import DEFAULT_ARGUMENTS as DEFARGS
|
||||
Database(DEFARGS['API_KEYS_DB_PATH'])
|
||||
EOPython
|
||||
|
||||
# initialize one API key
|
||||
ltmanage keys add 120 --key "$api_key"
|
||||
fi
|
||||
EOF
|
||||
|
||||
EXPOSE 22
|
||||
EXPOSE 5000
|
||||
|
||||
ENTRYPOINT [ "./venv/bin/libretranslate", "--host", "*" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue