According to https://github.com/moby/moby/issues/4032#issuecomment-163689851 (and some other comments in the issue) it's not recommended to set `DEBIAN_FRONTEND` via `ENV` in a Dockerfile. `ARG` has the same effect at build time but does not change `DEBIAN_FRONTEND` in the final image, so I switched to it. It should also work to remove it completely.
		
			
				
	
	
		
			29 lines
		
	
	
		
			826 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			826 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM debian:jessie-slim
 | |
| LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
 | |
| 
 | |
| ARG DEBIAN_FRONTEND=noninteractive
 | |
| ENV LC_ALL C
 | |
| 
 | |
| RUN apt-key adv --fetch-keys http://rspamd.com/apt-stable/gpg.key \
 | |
| 	&& echo "deb http://rspamd.com/apt-stable/ jessie main" > /etc/apt/sources.list.d/rspamd.list \
 | |
| 	&& apt-get update && apt-get install -y \
 | |
| 		ca-certificates \
 | |
| 		python-pip \
 | |
| 		rspamd \
 | |
| 	&& rm -rf /var/lib/apt/lists/*
 | |
| 
 | |
| RUN echo '.include $LOCAL_CONFDIR/local.d/rspamd.conf.local' > /etc/rspamd/rspamd.conf.local
 | |
| 
 | |
| COPY settings.conf /etc/rspamd/modules.d/settings.conf
 | |
| COPY antivirus.conf /etc/rspamd/modules.d/antivirus.conf
 | |
| COPY dkim_signing.lua /usr/share/rspamd/lua/dkim_signing.lua
 | |
| RUN pip install -U oletools
 | |
| 
 | |
| CMD /usr/bin/rspamd -f -u _rspamd -g _rspamd
 | |
| 
 | |
| RUN rm -rf /tmp/* /var/tmp/*
 | |
| 
 | |
| USER _rspamd
 | |
| 
 | |
| EXPOSE 11333 11334
 |