Install setproctitle from pkg mgrs
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				continuous-integration/drone/push Build is passing
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	continuous-integration/drone/push Build is passing
				
			This commit is contained in:
		@@ -6,7 +6,7 @@ steps:
 | 
				
			|||||||
- name: lint
 | 
					- name: lint
 | 
				
			||||||
  image: alpine
 | 
					  image: alpine
 | 
				
			||||||
  commands:
 | 
					  commands:
 | 
				
			||||||
  - apk add --no-cache python3 py3-lxml py3-pip py3-wheel py3-enchant hunspell-en
 | 
					  - apk add --no-cache python3 py3-lxml py3-setproctitle py3-pip py3-wheel py3-enchant hunspell-en
 | 
				
			||||||
  - pip3 install --no-cache-dir .[full] .[dev]
 | 
					  - pip3 install --no-cache-dir .[full] .[dev]
 | 
				
			||||||
  - isort --check-only --diff .
 | 
					  - isort --check-only --diff .
 | 
				
			||||||
  - pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8
 | 
					  - pylint morss --rcfile=.pylintrc --disable=C,R,W --fail-under=8
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,7 +3,7 @@ FROM alpine:latest
 | 
				
			|||||||
ADD . /app
 | 
					ADD . /app
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN set -ex; \
 | 
					RUN set -ex; \
 | 
				
			||||||
	apk add --no-cache --virtual .run-deps python3 py3-lxml; \
 | 
						apk add --no-cache --virtual .run-deps python3 py3-lxml py3-setproctitle; \
 | 
				
			||||||
	apk add --no-cache --virtual .build-deps py3-pip py3-wheel; \
 | 
						apk add --no-cache --virtual .build-deps py3-pip py3-wheel; \
 | 
				
			||||||
	pip3 install --no-cache-dir /app[full]; \
 | 
						pip3 install --no-cache-dir /app[full]; \
 | 
				
			||||||
	apk del .build-deps; \
 | 
						apk del .build-deps; \
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user