mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
8 lines
No EOL
336 B
Docker
8 lines
No EOL
336 B
Docker
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/examples/rest-api-cli/sftpgo_api_cli --output /usr/bin/sftpgo_api_cli
|
|
|
|
ENTRYPOINT ["python3", "/usr/bin/sftpgo_api_cli" ]
|
|
CMD [] |