diff --git a/Dockerfile b/Dockerfile
index 875b329bd002213516a4ccad07f24a484b2c936c..fe75e922218c93910c98104078faeb6ae994d15f 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -12,6 +12,7 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
 # install runtime packages
 RUN \
  apk add --no-cache \
+	ca-certificates \
 	libressl2.4-libssl \
 	p7zip \
 	unrar \
@@ -20,6 +21,9 @@ RUN \
 	--repository http://nl.alpinelinux.org/alpine/edge/testing \
 	deluge && \
 
+# update certificates
+ update-ca-certificates && \
+
 # install build packages
  apk add --no-cache --virtual=build-dependencies \
 	g++ \