mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 10:41:32 +00:00
12 lines
327 B
Docker
12 lines
327 B
Docker
FROM nginx:alpine3.18-slim
|
|
|
|
ENV NGINXUSER=streamline
|
|
ENV NGINXGROUP=streamline
|
|
|
|
RUN set -eux; \
|
|
mkdir -p /var/www/html/public; \
|
|
adduser -g ${NGINXGROUP} -s /bin/sh -D ${NGINXUSER}; \
|
|
sed -i "s/user www-data/user ${NGINXUSER}/g" /etc/nginx/nginx.conf
|
|
|
|
ADD .docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|