mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-07 23:00:55 +03:00
docker: install git
so support for Git repo is available using the sample Dockerfiles
This commit is contained in:
@@ -9,7 +9,8 @@ RUN go build -i -ldflags "-s -w -X github.com/drakkan/sftpgo/utils.commit=`git d
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
RUN apk add --no-cache ca-certificates su-exec \
|
||||
# git is optional it allows to serve Git repositories over SSH
|
||||
RUN apk add --no-cache ca-certificates su-exec git \
|
||||
&& mkdir -p /data /etc/sftpgo /srv/sftpgo/config /srv/sftpgo/web
|
||||
|
||||
COPY --from=builder /go/bin/sftpgo /bin/
|
||||
|
||||
@@ -10,6 +10,9 @@ 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 is optional it allows to serve Git repositories over SSH
|
||||
RUN apt-get update && apt-get install -y git
|
||||
|
||||
ARG BASE_DIR=/app
|
||||
ARG DATA_REL_DIR=data
|
||||
ARG CONFIG_REL_DIR=config
|
||||
|
||||
Reference in New Issue
Block a user