alpine docker file installs ca-certificates (for TLS)
This commit is contained in:
		@@ -20,6 +20,7 @@ RUN [ "rm", "-rf", "build" ]
 | 
				
			|||||||
FROM alpine:3.11 as runtime
 | 
					FROM alpine:3.11 as runtime
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN apk add --no-cache libstdc++ mbedtls
 | 
					RUN apk add --no-cache libstdc++ mbedtls
 | 
				
			||||||
 | 
					RUN apk add --no-cache ca-certificates
 | 
				
			||||||
 | 
					
 | 
				
			||||||
RUN addgroup -S app && adduser -S -G app app
 | 
					RUN addgroup -S app && adduser -S -G app app
 | 
				
			||||||
COPY --chown=app:app --from=build /usr/local/bin/ws /usr/local/bin/ws
 | 
					COPY --chown=app:app --from=build /usr/local/bin/ws /usr/local/bin/ws
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user