Reduced image size furtherly. Now 329MB and based on python:alpine.
This commit is contained in:
		
							parent
							
								
									7e2ef5822d
								
							
						
					
					
						commit
						7c299786f0
					
				| 
						 | 
					@ -1,6 +1,6 @@
 | 
				
			||||||
# syntax=docker/dockerfile:1
 | 
					# syntax=docker/dockerfile:1
 | 
				
			||||||
 | 
					
 | 
				
			||||||
FROM alpine:latest
 | 
					FROM python:alpine
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ENV TZ=Europe/Berlin
 | 
					ENV TZ=Europe/Berlin
 | 
				
			||||||
ENV UNBUFFERED=1
 | 
					ENV UNBUFFERED=1
 | 
				
			||||||
| 
						 | 
					@ -11,9 +11,17 @@ VOLUME /app
 | 
				
			||||||
COPY . .
 | 
					COPY . .
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone; \
 | 
					RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone; \
 | 
				
			||||||
    /bin/sh -c 'apk update && apk add --no-cache gcc musl-dev python3-dev py3-pip libffi-dev openssl-dev cargo zlib-dev jpeg-dev speex ffmpeg htop; \
 | 
					    apk --no-cache update && apk add --no-cache  --virtual .build-deps \
 | 
				
			||||||
    pip install update pip && pip install -r requirements.txt ; \
 | 
					    gcc \
 | 
				
			||||||
    apk del zlib-dev jpeg-dev gcc musl-dev python3-dev libffi-dev openssl-dev cargo;'
 | 
					    cargo \
 | 
				
			||||||
 | 
					    libffi-dev \
 | 
				
			||||||
 | 
					    openssl-dev \
 | 
				
			||||||
 | 
					    zlib-dev \
 | 
				
			||||||
 | 
					    jpeg-dev ; \
 | 
				
			||||||
 | 
					    apk add --no-cache ffmpeg speex; \
 | 
				
			||||||
 | 
					    pip install --no-cache-dir upgrade pip; \
 | 
				
			||||||
 | 
					    pip install --no-cache-dir -r requirements.txt ; \
 | 
				
			||||||
 | 
					    apk del --no-cache .build-deps;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -7,7 +7,7 @@ services:
 | 
				
			||||||
      context: ../.
 | 
					      context: ../.
 | 
				
			||||||
      dockerfile: ./docker/Dockerfile
 | 
					      dockerfile: ./docker/Dockerfile
 | 
				
			||||||
    working_dir: /app
 | 
					    working_dir: /app
 | 
				
			||||||
    entrypoint: /bin/sh -c "export UNBUFFERED=1 && python3 -u ./fritzab2matrix.py"
 | 
					#    entrypoint: /bin/sh -c "export UNBUFFERED=1 && python3 -u ./fritzab2matrix.py"
 | 
				
			||||||
    volumes:
 | 
					    volumes:
 | 
				
			||||||
      - ../.:/app
 | 
					      - ../.:/app
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,3 +1,4 @@
 | 
				
			||||||
 | 
					requests
 | 
				
			||||||
fritzconnection
 | 
					fritzconnection
 | 
				
			||||||
python-dotenv
 | 
					python-dotenv
 | 
				
			||||||
xmltodict
 | 
					xmltodict
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue