mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
10 lines
225 B
Text
10 lines
225 B
Text
|
ARG BASE_IMAGE
|
||
|
|
||
|
FROM ${BASE_IMAGE}
|
||
|
|
||
|
USER root
|
||
|
|
||
|
# Install some optional packages used by SFTPGo features
|
||
|
RUN apt-get update && apt-get install --no-install-recommends -y git rsync && rm -rf /var/lib/apt/lists/*
|
||
|
|
||
|
USER 1000:1000
|