Switch form Ubuntu to Debian
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							e342016534
						
					
				
				
					commit
					ea006dfa25
				
			@@ -1,22 +1,26 @@
 | 
			
		||||
FROM ubuntu:bionic
 | 
			
		||||
FROM debian:buster-slim
 | 
			
		||||
LABEL maintainer "Andre Peters <andre.peters@servercow.de>"
 | 
			
		||||
 | 
			
		||||
ARG DEBIAN_FRONTEND=noninteractive
 | 
			
		||||
ARG CODENAME=buster
 | 
			
		||||
ENV LC_ALL C
 | 
			
		||||
 | 
			
		||||
RUN apt-get update && apt-get install -y \
 | 
			
		||||
  tzdata \
 | 
			
		||||
	ca-certificates \
 | 
			
		||||
	gnupg2 \
 | 
			
		||||
	apt-transport-https \
 | 
			
		||||
	&& apt-key adv --fetch-keys https://rspamd.com/apt/gpg.key \
 | 
			
		||||
	&& echo "deb https://rspamd.com/apt-stable/ bionic main" > /etc/apt/sources.list.d/rspamd.list \
 | 
			
		||||
	&& apt-get update && apt-get install -y rspamd dnsutils \
 | 
			
		||||
	&& rm -rf /var/lib/apt/lists/* \
 | 
			
		||||
	&& apt-get autoremove --purge \
 | 
			
		||||
	&& apt-get clean \
 | 
			
		||||
	&& mkdir -p /run/rspamd \
 | 
			
		||||
	&& chown _rspamd:_rspamd /run/rspamd
 | 
			
		||||
  ca-certificates \
 | 
			
		||||
  gnupg \
 | 
			
		||||
  apt-transport-https \
 | 
			
		||||
  dnsutils \
 | 
			
		||||
  && apt-key adv --fetch-keys https://rspamd.com/apt-stable/gpg.key \
 | 
			
		||||
  && echo "deb [arch=amd64] https://rspamd.com/apt-stable/ $CODENAME main" > /etc/apt/sources.list.d/rspamd.list \
 | 
			
		||||
  && echo "deb-src [arch=amd64] https://rspamd.com/apt-stable/ $CODENAME main" >> /etc/apt/sources.list.d/rspamd.list \
 | 
			
		||||
  && apt-get update \
 | 
			
		||||
  && apt-get --no-install-recommends -y install rspamd \
 | 
			
		||||
  && rm -rf /var/lib/apt/lists/* \
 | 
			
		||||
  && apt-get autoremove --purge \
 | 
			
		||||
  && apt-get clean \
 | 
			
		||||
  && mkdir -p /run/rspamd \
 | 
			
		||||
  && chown _rspamd:_rspamd /run/rspamd
 | 
			
		||||
 | 
			
		||||
COPY settings.conf /etc/rspamd/settings.conf
 | 
			
		||||
COPY docker-entrypoint.sh /docker-entrypoint.sh
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user