mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-06 14:20:55 +03:00
10 lines
161 B
Docker
10 lines
161 B
Docker
ARG BASE_IMAGE
|
|
|
|
FROM ${BASE_IMAGE}
|
|
|
|
USER root
|
|
|
|
# Install some optional packages used by SFTPGo features
|
|
RUN apk add --update --no-cache rsync git
|
|
|
|
USER 1000:1000 |