From 8d7b875189f90d8c38a50ca6a24aeb87d0a54e03 Mon Sep 17 00:00:00 2001 From: BluemediaGER Date: Thu, 3 Jun 2021 01:33:19 +0200 Subject: [PATCH] Remove stunnel user from Dockerfile --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index efa49a3..21de4e2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,14 +1,14 @@ -# The Base Image used to create this Image +# Base Image used to create this Image FROM debian:buster-slim -# Just my name who wrote this file +# Maintainer LABEL maintainer="oliver@traber-info.de" ENV DEBIAN_FRONTEND noninteractive ENV RTMP_PORT 1935 ENV HTTP_PORT 8080 -# Update and install logrotate +# Update and install packages RUN apt update -y && \ apt upgrade -y && \ apt autoremove -y && \ @@ -16,8 +16,8 @@ RUN apt update -y && \ apt clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* -# Create users -RUN useradd -s /bin/false stunnel && useradd -s /bin/false nginx +# Create nginx user +RUN useradd -s /bin/false nginx # Copy files into image COPY config/ /template/