mirror of
				https://github.com/THIS-IS-NOT-A-BACKUP/zspotify.git
				synced 2025-11-04 05:20:34 +00:00 
			
		
		
		
	- Remember credentials between container starts - Use same uid/gid in container as on host
		
			
				
	
	
		
			19 lines
		
	
	
		
			409 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			409 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.9-alpine as base
 | 
						|
 | 
						|
RUN apk --update add git ffmpeg
 | 
						|
 | 
						|
FROM base as builder
 | 
						|
RUN mkdir /install
 | 
						|
WORKDIR /install
 | 
						|
COPY requirements.txt /requirements.txt
 | 
						|
RUN apk add gcc libc-dev zlib zlib-dev jpeg-dev \
 | 
						|
    && pip install --prefix="/install" -r /requirements.txt
 | 
						|
 | 
						|
 | 
						|
FROM base
 | 
						|
 | 
						|
COPY --from=builder /install /usr/local
 | 
						|
COPY zspotify /app
 | 
						|
WORKDIR /app
 | 
						|
ENTRYPOINT ["/usr/local/bin/python", "__main__.py"]
 |