Dockerfile.full 225 B

12345678910
  1. ARG BASE_IMAGE
  2. FROM ${BASE_IMAGE}
  3. USER root
  4. # Install some optional packages used by SFTPGo features
  5. RUN apt-get update && apt-get install --no-install-recommends -y git rsync && rm -rf /var/lib/apt/lists/*
  6. USER 1000:1000