14 lines
208 B
Plaintext
14 lines
208 B
Plaintext
|
FROM nginx:1.25.3-alpine
|
||
|
COPY docker/nginx/default.conf /etc/nginx/conf.d/default.conf
|
||
|
|
||
|
ARG UID=1000
|
||
|
ARG GID=1000
|
||
|
|
||
|
USER 0:0
|
||
|
|
||
|
RUN apk add shadow
|
||
|
RUN usermod -u $UID nginx
|
||
|
RUN groupmod -g $GID nginx
|
||
|
|
||
|
EXPOSE 80
|