OPS-268: Adds default logger permissions (#35)

This commit is contained in:
Aleksey Kashapov 2023-07-13 16:45:22 +03:00 committed by GitHub
parent 5e54ebb464
commit 99a5bb218b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,6 +44,8 @@ RUN echo "#!/bin/sh" >> /entrypoint.sh && \
# Setup user
RUN groupadd --gid ${USER_GID} ${SERVICE_NAME} && \
mkdir /var/log/${SERVICE_NAME} && \
chown ${USER_UID}:${USER_GID} /var/log/${SERVICE_NAME} && \
useradd --uid ${USER_UID} --gid ${USER_GID} -M ${SERVICE_NAME}
USER ${SERVICE_NAME}