Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
docker-images
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Matthias Dressel
docker-images
Commits
c9b8ccce
Commit
c9b8ccce
authored
2 years ago
by
Konstantin Pavlov
Browse files
Options
Downloads
Patches
Plain Diff
Added a docker image to build www.videolan.org.
parent
8bfe1c3e
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
website-debian/Dockerfile
+25
-0
25 additions, 0 deletions
website-debian/Dockerfile
with
25 additions
and
0 deletions
website-debian/Dockerfile
0 → 100644
+
25
−
0
View file @
c9b8ccce
FROM
debian:bullseye-20230208-slim
MAINTAINER
VideoLAN roots <roots@videolan.org>
ENV
IMAGE_DATE=202302281650
# If someone wants to use VideoLAN docker images on a local machine and does
# not want to be disturbed by the videolan user, we should not take an uid/gid
# in the user range of main distributions, which means:
# - Debian based: <1000
# - RPM based: <500 (CentOS, RedHat, etc.)
ARG
VIDEOLAN_UID=499
RUN
addgroup
--quiet
--gid
${
VIDEOLAN_UID
}
videolan
&&
\
adduser
--quiet
--uid
${
VIDEOLAN_UID
}
--ingroup
videolan videolan
&&
\
usermod
--append
--groups
video videolan
&&
\
echo
"videolan:videolan"
| chpasswd
&&
\
apt-get update
&&
\
apt-get
install
-y
--no-install-suggests
--no-install-recommends
\
make php-cgi php-curl php-gd php-intl php-mbstring php-json
\
php-opcache php-pgsql php-readline php-xml git ca-certificates sassc
\
gettext locales-all yui-compressor
\
&&
apt-get clean
-y
&&
rm
-rf
/var/lib/apt/lists/
*
USER
videolan
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