6 lines
177 B
Docker
6 lines
177 B
Docker
FROM nginx:alpine
|
|
|
|
RUN adduser --system --no-create-home --home /nonexistent --gecos 'www-data user' --shell /bin/false --uid 82 www-data
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|