Dockerfile: change style according to official Dockerfiles
This commit is contained in:
		
							
								
								
									
										45
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						
									
										45
									
								
								Dockerfile
									
									
									
									
									
								
							@@ -2,33 +2,40 @@
 | 
			
		||||
#
 | 
			
		||||
# VERSION 0.3.1
 | 
			
		||||
 | 
			
		||||
FROM 	alpine:latest
 | 
			
		||||
FROM alpine:latest
 | 
			
		||||
 | 
			
		||||
# Base packages
 | 
			
		||||
RUN	apk update && \
 | 
			
		||||
	apk upgrade && \
 | 
			
		||||
	apk add python3 python3-dev build-base libffi-dev ca-certificates
 | 
			
		||||
RUN apk update \
 | 
			
		||||
      && apk upgrade \
 | 
			
		||||
      && apk add \
 | 
			
		||||
          python3 \
 | 
			
		||||
          python3-dev \
 | 
			
		||||
          build-base \
 | 
			
		||||
          libffi-dev \
 | 
			
		||||
          ca-certificates
 | 
			
		||||
 | 
			
		||||
# Python installation
 | 
			
		||||
# pip
 | 
			
		||||
ADD	https://bootstrap.pypa.io/get-pip.py /tmp/install/
 | 
			
		||||
RUN	python3 /tmp/install/* && \
 | 
			
		||||
	pip install passlib bcrypt setuptools
 | 
			
		||||
ADD https://bootstrap.pypa.io/get-pip.py /tmp/install/
 | 
			
		||||
RUN python3 /tmp/install/* && \
 | 
			
		||||
      pip install passlib bcrypt setuptools
 | 
			
		||||
 | 
			
		||||
# Radicale installation
 | 
			
		||||
RUN	mkdir -p /data/config
 | 
			
		||||
COPY 	. /data/radicale
 | 
			
		||||
COPY	config /data/config
 | 
			
		||||
RUN	cd /data/radicale && python3 setup.py install
 | 
			
		||||
RUN mkdir -p /data/config
 | 
			
		||||
 | 
			
		||||
COPY . /data/radicale
 | 
			
		||||
COPY config /data/config
 | 
			
		||||
 | 
			
		||||
RUN cd /data/radicale && python3 setup.py install
 | 
			
		||||
 | 
			
		||||
# User
 | 
			
		||||
RUN 	adduser -h /home/radicale -D radicale && \
 | 
			
		||||
	mkdir -p /home/radicale/.config && \
 | 
			
		||||
 	ln -s /data/config /home/radicale/.config/radicale && \
 | 
			
		||||
 	chown -R radicale:radicale /data/config && \
 | 
			
		||||
	chown -R radicale:radicale /home/radicale
 | 
			
		||||
RUN adduser -h /home/radicale -D radicale \
 | 
			
		||||
      && mkdir -p /home/radicale/.config \
 | 
			
		||||
      && ln -s /data/config /home/radicale/.config/radicale \
 | 
			
		||||
      && chown -R radicale:radicale /data/config \
 | 
			
		||||
      && chown -R radicale:radicale /home/radicale
 | 
			
		||||
 | 
			
		||||
USER 	radicale
 | 
			
		||||
WORKDIR	/home/radicale
 | 
			
		||||
USER radicale
 | 
			
		||||
WORKDIR /home/radicale
 | 
			
		||||
 | 
			
		||||
CMD 	["radicale", "-D", "-C", "/data/config/config"]
 | 
			
		||||
CMD ["radicale", "-D", "-C", "/data/config/config"]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user