mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	Reduce Docker image size
* Remove compiled sources. Most of them are never used. Those in use are compiled in the first run really fast. * Copy only source code and Docker entypoint * Image size reduced by 41 MB (195 MB -> 154 MB uncompressed)
This commit is contained in:
		
							parent
							
								
									768659f2bd
								
							
						
					
					
						commit
						9417c284d3
					
				
							
								
								
									
										14
									
								
								Dockerfile
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								Dockerfile
									
									
									
									
									
								
							@ -45,21 +45,21 @@ RUN apk upgrade --no-cache \
 | 
				
			|||||||
    uwsgi \
 | 
					    uwsgi \
 | 
				
			||||||
    uwsgi-python3 \
 | 
					    uwsgi-python3 \
 | 
				
			||||||
    brotli \
 | 
					    brotli \
 | 
				
			||||||
 && pip3 install --upgrade pip wheel setuptools \
 | 
					 | 
				
			||||||
 && pip3 install --no-cache -r requirements.txt \
 | 
					 && pip3 install --no-cache -r requirements.txt \
 | 
				
			||||||
 && apk del build-dependencies \
 | 
					 && apk del build-dependencies \
 | 
				
			||||||
 && rm -rf /root/.cache
 | 
					 && rm -rf /root/.cache \
 | 
				
			||||||
 | 
					 && find /usr/lib/python*/ -name '*.pyc' -delete
 | 
				
			||||||
 | 
					
 | 
				
			||||||
COPY --chown=searxng:searxng . .
 | 
					COPY --chown=searxng:searxng dockerfiles ./dockerfiles
 | 
				
			||||||
 | 
					COPY --chown=searxng:searxng searx ./searx
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ARG TIMESTAMP_SETTINGS=0
 | 
					ARG TIMESTAMP_SETTINGS=0
 | 
				
			||||||
ARG TIMESTAMP_UWSGI=0
 | 
					ARG TIMESTAMP_UWSGI=0
 | 
				
			||||||
ARG VERSION_GITCOMMIT=unknown
 | 
					ARG VERSION_GITCOMMIT=unknown
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN su searxng -c "/usr/bin/python3 -m compileall -q searx"; \
 | 
					RUN touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml \
 | 
				
			||||||
    touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml; \
 | 
					 && touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini \
 | 
				
			||||||
    touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini; \
 | 
					 && find /usr/local/searxng/searx/static -a \( -name '*.html' -o -name '*.css' -o -name '*.js' \
 | 
				
			||||||
    find /usr/local/searxng/searx/static -a \( -name '*.html' -o -name '*.css' -o -name '*.js' \
 | 
					 | 
				
			||||||
    -o -name '*.svg' -o -name '*.ttf' -o -name '*.eot' \) \
 | 
					    -o -name '*.svg' -o -name '*.ttf' -o -name '*.eot' \) \
 | 
				
			||||||
    -type f -exec gzip -9 -k {} \+ -exec brotli --best {} \+
 | 
					    -type f -exec gzip -9 -k {} \+ -exec brotli --best {} \+
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user