mirror of
				https://gitea.publichub.eu/oscar.krause/fastapi-dls.git
				synced 2025-11-03 02:26:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			930 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			930 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.12-alpine
 | 
						|
 | 
						|
ARG VERSION
 | 
						|
ARG COMMIT=""
 | 
						|
RUN echo -e "VERSION=$VERSION\nCOMMIT=$COMMIT" > /version.env
 | 
						|
 | 
						|
COPY requirements.txt /tmp/requirements.txt
 | 
						|
 | 
						|
RUN apk update \
 | 
						|
 && apk add --no-cache --virtual build-deps gcc g++ python3-dev musl-dev pkgconfig \
 | 
						|
 && apk add --no-cache curl postgresql postgresql-dev mariadb-dev sqlite-dev \
 | 
						|
 && pip install --no-cache-dir --upgrade uvicorn \
 | 
						|
 && pip install --no-cache-dir psycopg2==2.9.10 mysqlclient==2.2.7 pysqlite3==0.5.4 \
 | 
						|
 && pip install --no-cache-dir -r /tmp/requirements.txt \
 | 
						|
 && apk del build-deps
 | 
						|
 | 
						|
COPY app /app
 | 
						|
COPY README.md /README.md
 | 
						|
 | 
						|
HEALTHCHECK --start-period=30s --interval=10s --timeout=5s --retries=3 CMD curl --insecure --fail https://localhost/-/health || exit 1
 | 
						|
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "443", "--app-dir", "/app", "--proxy-headers", "--ssl-keyfile", "/app/cert/webserver.key", "--ssl-certfile", "/app/cert/webserver.crt"]
 |