Jack dd6b348e65
Some checks reported warnings
Build and push image / Build (push) Has been cancelled
Added other containers
2023-08-26 00:15:47 +01:00

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;"]