Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LibreTranslate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Riße, Matthias
LibreTranslate
Commits
2a5e8473
Unverified
Commit
2a5e8473
authored
2 years ago
by
Eugene Davis
Browse files
Options
Downloads
Patches
Plain Diff
Execute docker as non-root
parent
299e5c3a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+19
-8
19 additions, 8 deletions
Dockerfile
with
19 additions
and
8 deletions
Dockerfile
+
19
−
8
View file @
2a5e8473
FROM
python:3.8.12-slim-bullseye
FROM
python:3.8.12-slim-bullseye
as
builder
ARG
with_models=false
ARG
models=
...
...
@@ -13,24 +13,35 @@ RUN apt-get update -qq \
RUN
apt-get update
&&
apt-get upgrade
--assume-yes
RUN
pip
install
--upgrade
pip
RUN
python
-mvenv
venv
&&
./venv/bin/
pip
install
--upgrade
pip
COPY
. .
RUN if
[
"
$with_models
"
=
"true"
]
;
then
\
# install only the dependencies first
pip install -e .; \
./venv/bin/
pip install -e .; \
# initialize the language models
if [ ! -z "$models" ]; then \
./install_models.py --load_only_lang_codes "$models"; \
./
venv/bin/python
install_models.py --load_only_lang_codes "$models"; \
else \
./install_models.py; \
./
venv/bin/python
install_models.py; \
fi \
fi
# Install package from source code
RUN
pip
install
.
\
&&
pip cache purge
RUN
./venv/bin/pip
install
.
\
&&
./venv/bin/pip cache purge
FROM
python:3.8.12-slim-bullseye
RUN
addgroup
--system
--gid
1032 libretranslate
&&
adduser
--system
--uid
1032 libretranslate
RUN
apt-get update
-qq
&&
apt-get
-qqq
install
--no-install-recommends
-y
libicu67
&&
apt-get clean
&&
rm
-rf
/var/lib/apt
USER
libretranslate
COPY
--from=builder --chown=libretranslate:libretranslate /app /app
WORKDIR
/app
EXPOSE
5000
ENTRYPOINT
[ "libretranslate", "--host", "0.0.0.0" ]
ENTRYPOINT
[ "
./venv/bin/
libretranslate", "--host", "0.0.0.0" ]
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment