Skip to content
Snippets Groups Projects
Commit 290d6dd2 authored by Martin Storsjö's avatar Martin Storsjö Committed by Konstantin Pavlov
Browse files

x264-debian-unstable: Update the base image

adduser is no longer installed automatically. Since it's just a
wrapper around useradd, let's use that directly.

This applies parts of e2ead39e
to the x264 image.
parent c7de4479
No related branches found
No related tags found
No related merge requests found
FROM debian:sid-20211201-slim
FROM debian:sid-20231030-slim
MAINTAINER VideoLAN roots <roots@videolan.org>
......@@ -11,8 +11,8 @@ ENV IMAGE_DATE=202112061500
# - 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 && \
RUN groupadd --gid ${VIDEOLAN_UID} videolan && \
useradd --uid ${VIDEOLAN_UID} --gid videolan --create-home --shell /bin/bash videolan && \
echo "videolan:videolan" | chpasswd && \
dpkg --add-architecture i386 && \
apt-get update && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment