| 
									
										
										
										
											2022-12-16 15:55:17 +03:00
										 |  |  | FROM python:3.10-alpine
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | COPY requirements.txt /tmp/requirements.txt
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | RUN apk update \
 | 
					
						
							|  |  |  |  && apk add --no-cache --virtual build-deps gcc g++ python3-dev musl-dev \
 | 
					
						
							| 
									
										
										
										
											2022-12-20 21:42:33 +03:00
										 |  |  |  && apk add --no-cache curl postgresql postgresql-dev mariadb-connector-c-dev sqlite-dev \
 | 
					
						
							| 
									
										
										
										
											2022-12-16 15:55:17 +03:00
										 |  |  |  && pip install --no-cache-dir --upgrade uvicorn \
 | 
					
						
							| 
									
										
										
										
											2022-12-20 21:38:04 +03:00
										 |  |  |  && pip install --no-cache-dir psycopg2==2.9.5 mysqlclient==2.1.1 pysqlite3==0.5.0 \
 | 
					
						
							| 
									
										
										
										
											2022-12-16 15:55:17 +03:00
										 |  |  |  && pip install --no-cache-dir -r /tmp/requirements.txt \
 | 
					
						
							|  |  |  |  && apk del build-deps
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | COPY app /app
 | 
					
						
							| 
									
										
										
										
											2022-12-21 13:06:09 +03:00
										 |  |  | COPY version.env /version.env
 | 
					
						
							| 
									
										
										
										
											2022-12-21 09:33:20 +03:00
										 |  |  | COPY README.md /README.md
 | 
					
						
							| 
									
										
										
										
											2022-12-16 15:55:17 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-20 19:59:38 +03:00
										 |  |  | HEALTHCHECK --start-period=30s --interval=10s --timeout=5s --retries=3 CMD curl --insecure --fail https://localhost/status || exit 1
 | 
					
						
							| 
									
										
										
										
											2022-12-19 16:33:23 +03:00
										 |  |  | 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"]
 |