1
0
Fork 0
new.mdenis.org/docker/php-ssh/Dockerfile

10 lines
243 B
Docker

FROM php:7.4-cli
RUN apt-get update && apt-get install -y \
openssh-client curl bash
RUN cd /root \
&& curl -LO https://deployer.org/deployer.phar \
&& mv deployer.phar /usr/local/bin/dep \
&& chmod +x /usr/local/bin/dep