16 lines
310 B
Docker
16 lines
310 B
Docker
FROM nginx:latest
|
|
|
|
COPY ./snippets /etc/nginx/snippets/
|
|
|
|
COPY ./certs /certs/
|
|
|
|
COPY ./configs /etc/nginx/conf.d/
|
|
|
|
RUN usermod -u 1000 www-data \
|
|
&& groupmod -g 1000 www-data
|
|
|
|
RUN apt-get update && apt-get install -y gnupg
|
|
|
|
#RUN apt-get install smbclient -y
|
|
#CMD ["nginx", "-g", "--with-http_sub_module;"]
|