kopia lustrzana https://github.com/simonw/datasette
				
				
				
			
		
			
				
	
	
		
			19 wiersze
		
	
	
		
			553 B
		
	
	
	
		
			Docker
		
	
	
			
		
		
	
	
			19 wiersze
		
	
	
		
			553 B
		
	
	
	
		
			Docker
		
	
	
FROM python:3.11.0-slim-bullseye as build
 | 
						|
 | 
						|
# Version of Datasette to install, e.g. 0.55
 | 
						|
#   docker build . -t datasette --build-arg VERSION=0.55
 | 
						|
ARG VERSION
 | 
						|
 | 
						|
RUN apt-get update && \
 | 
						|
    apt-get install -y --no-install-recommends libsqlite3-mod-spatialite && \
 | 
						|
    apt clean && \
 | 
						|
    rm -rf /var/lib/apt && \
 | 
						|
    rm -rf /var/lib/dpkg/info/*
 | 
						|
 | 
						|
RUN pip install https://github.com/simonw/datasette/archive/refs/tags/${VERSION}.zip && \
 | 
						|
    find /usr/local/lib -name '__pycache__' | xargs rm -r && \
 | 
						|
    rm -rf /root/.cache/pip
 | 
						|
 | 
						|
EXPOSE 8001
 | 
						|
CMD ["datasette"]
 |