2021-08-18 12:39:56 +00:00
|
|
|
FROM golang:1.17-alpine3.14 AS builder
|
2020-10-08 19:43:13 +00:00
|
|
|
|
|
|
|
ENV GOFLAGS="-mod=readonly"
|
|
|
|
|
|
|
|
RUN apk add --update --no-cache bash ca-certificates curl git gcc g++
|
|
|
|
|
|
|
|
RUN mkdir -p /workspace
|
|
|
|
WORKDIR /workspace
|
|
|
|
|
|
|
|
ARG GOPROXY
|
|
|
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
|
|
|
|
ARG COMMIT_SHA
|
|
|
|
|
|
|
|
# This ARG allows to disable some optional features and it might be useful if you build the image yourself.
|
|
|
|
# For example you can disable S3 and GCS support like this:
|
|
|
|
# --build-arg FEATURES=nos3,nogcs
|
|
|
|
ARG FEATURES
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN set -xe && \
|
|
|
|
export COMMIT_SHA=${COMMIT_SHA:-$(git describe --always --dirty)} && \
|
2021-06-26 05:31:41 +00:00
|
|
|
go build $(if [ -n "${FEATURES}" ]; then echo "-tags ${FEATURES}"; fi) -trimpath -ldflags "-s -w -X github.com/drakkan/sftpgo/v2/version.commit=${COMMIT_SHA} -X github.com/drakkan/sftpgo/v2/version.date=`date -u +%FT%TZ`" -v -o sftpgo
|
2020-10-08 19:43:13 +00:00
|
|
|
|
|
|
|
|
2021-08-05 17:38:30 +00:00
|
|
|
FROM alpine:3.14
|
2020-10-08 19:43:13 +00:00
|
|
|
|
2021-09-27 09:34:11 +00:00
|
|
|
# Set to "true" to install the optional git dependency
|
2021-02-07 20:49:04 +00:00
|
|
|
ARG INSTALL_OPTIONAL_PACKAGES=false
|
|
|
|
|
2020-11-12 10:53:05 +00:00
|
|
|
RUN apk add --update --no-cache ca-certificates tzdata mailcap
|
2020-10-08 19:43:13 +00:00
|
|
|
|
2021-09-27 09:34:11 +00:00
|
|
|
RUN if [ "${INSTALL_OPTIONAL_PACKAGES}" = "true" ]; then apk add --update --no-cache git; fi
|
2021-02-07 20:49:04 +00:00
|
|
|
|
2020-10-08 19:43:13 +00:00
|
|
|
# set up nsswitch.conf for Go's "netgo" implementation
|
|
|
|
# https://github.com/gliderlabs/docker-alpine/issues/367#issuecomment-424546457
|
|
|
|
RUN test ! -e /etc/nsswitch.conf && echo 'hosts: files dns' > /etc/nsswitch.conf
|
|
|
|
|
2021-02-10 18:04:06 +00:00
|
|
|
RUN mkdir -p /etc/sftpgo /var/lib/sftpgo /usr/share/sftpgo /srv/sftpgo/data /srv/sftpgo/backups
|
2020-10-08 19:43:13 +00:00
|
|
|
|
2020-10-09 18:25:42 +00:00
|
|
|
RUN addgroup -g 1000 -S sftpgo && \
|
2020-11-10 22:11:57 +00:00
|
|
|
adduser -u 1000 -h /var/lib/sftpgo -s /sbin/nologin -G sftpgo -S -D -H -g "SFTPGo user" sftpgo
|
2020-10-08 19:43:13 +00:00
|
|
|
|
|
|
|
COPY --from=builder /workspace/sftpgo.json /etc/sftpgo/sftpgo.json
|
|
|
|
COPY --from=builder /workspace/templates /usr/share/sftpgo/templates
|
|
|
|
COPY --from=builder /workspace/static /usr/share/sftpgo/static
|
|
|
|
COPY --from=builder /workspace/sftpgo /usr/local/bin/
|
|
|
|
|
2020-10-14 05:46:36 +00:00
|
|
|
# Log to the stdout so the logs will be available using docker logs
|
|
|
|
ENV SFTPGO_LOG_FILE_PATH=""
|
|
|
|
# templates and static paths are inside the container
|
|
|
|
ENV SFTPGO_HTTPD__TEMPLATES_PATH=/usr/share/sftpgo/templates
|
2021-10-02 20:25:41 +00:00
|
|
|
ENV SFTPGO_SMTP__TEMPLATES_PATH=/usr/share/sftpgo/templates
|
2020-10-14 05:46:36 +00:00
|
|
|
ENV SFTPGO_HTTPD__STATIC_FILES_PATH=/usr/share/sftpgo/static
|
|
|
|
|
|
|
|
# Modify the default configuration file
|
|
|
|
RUN sed -i "s|\"users_base_dir\": \"\",|\"users_base_dir\": \"/srv/sftpgo/data\",|" /etc/sftpgo/sftpgo.json && \
|
2021-05-11 04:54:06 +00:00
|
|
|
sed -i "s|\"backups\"|\"/srv/sftpgo/backups\"|" /etc/sftpgo/sftpgo.json
|
2020-10-08 19:43:13 +00:00
|
|
|
|
2021-02-10 18:04:06 +00:00
|
|
|
RUN chown -R sftpgo:sftpgo /etc/sftpgo /srv/sftpgo && chown sftpgo:sftpgo /var/lib/sftpgo && chmod 700 /srv/sftpgo/backups
|
2020-10-08 19:43:13 +00:00
|
|
|
|
2020-10-14 05:46:36 +00:00
|
|
|
WORKDIR /var/lib/sftpgo
|
2020-11-12 10:53:05 +00:00
|
|
|
USER 1000:1000
|
2020-10-08 19:43:13 +00:00
|
|
|
|
2020-11-10 22:11:57 +00:00
|
|
|
CMD ["sftpgo", "serve"]
|