adds user to run as noin-root
This commit is contained in:
parent
743c7c65dd
commit
6935bdeeb2
@ -6,9 +6,23 @@ def repositoryCreds = "harbor-repository-creds"
|
|||||||
def dockerFile = """FROM ${repository}/dockerhub/library/alpine:latest
|
def dockerFile = """FROM ${repository}/dockerhub/library/alpine:latest
|
||||||
|
|
||||||
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
|
LABEL org.opencontainers.image.authors="The_Spider <spider@smoothnet.org>"
|
||||||
|
LABEL org.opencontainers.image.title="icecast"
|
||||||
|
LABEL org.opencontainers.image.description="Docker Container providing services for IceCast"
|
||||||
|
LABEL org.opencontainers.image.base.name="docker.io/library/alpine/latest"
|
||||||
|
|
||||||
RUN apk add --no-cache icecast && \
|
ENV CONFIG_FILE="/etc/icecast.xml"
|
||||||
mkdir /icecast
|
|
||||||
|
RUN apk add --no-cache icecast && \\
|
||||||
|
addgroup -S -g 1000 icecast && \\
|
||||||
|
adduser --disabled-password -G icecast --gecos "application account" --home "/icecast" --shell "/sbin/nologin" --uid 1000 icecast && \\
|
||||||
|
mkdir /icecast && \\
|
||||||
|
chown icecast:icecast /icecast
|
||||||
|
|
||||||
|
USER icecast
|
||||||
|
|
||||||
|
RUNAS icecast
|
||||||
|
|
||||||
|
CMD ["/bin/sh", "-c", "icecast -c \\"${CONFIG_FILE}\\""]
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def label = "kubernetes-${UUID.randomUUID().toString()}"
|
def label = "kubernetes-${UUID.randomUUID().toString()}"
|
||||||
|
Reference in New Issue
Block a user