From e011f793ece7636d8243ca70a33fcfaf02b9a02c Mon Sep 17 00:00:00 2001 From: Mazinger <38090227+ricardojmv85@users.noreply.github.com> Date: Thu, 13 Feb 2020 23:34:16 -0600 Subject: [PATCH] CA certificate for Debian Docker image (#71) * ca-certificate package included to ensure ssl connections * comment instruction --- docker/sftpgo/debian/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/sftpgo/debian/Dockerfile b/docker/sftpgo/debian/Dockerfile index d25d404c..2ce37f1e 100644 --- a/docker/sftpgo/debian/Dockerfile +++ b/docker/sftpgo/debian/Dockerfile @@ -10,8 +10,8 @@ RUN go build -i -ldflags "-s -w -X github.com/drakkan/sftpgo/utils.commit=`git d # now define the run environment FROM debian:latest -# git and rsync are optional, uncomment the next line to add support for them if needed -#RUN apt-get update && apt-get install -y git rsync +# git, rsync and ca-certificates are optional, uncomment the next line to add support for them if needed. (ca-certificate if you're going to use S3 binding feature) +#RUN apt-get update && apt-get install -y git rsync ca-certificates ARG BASE_DIR=/app ARG DATA_REL_DIR=data