add sample Dockerfiles

This commit is contained in:
Nicola Murino
2019-09-06 13:20:21 +02:00
parent a26343a694
commit a7363a16be
4 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
FROM debian:latest
LABEL maintainer="nicola.murino@gmail.com"
RUN apt-get update && apt-get install -y curl python3-requests python3-pygments
RUN curl https://raw.githubusercontent.com/drakkan/sftpgo/master/scripts/sftpgo_api_cli.py --output /usr/bin/sftpgo_api_cli.py
ENTRYPOINT ["python3", "/usr/bin/sftpgo_api_cli.py" ]
CMD []