Docker image for default deployment use with drone-deploy
7.9K
FROM php
MAINTAINER Naokazu Terada <[email protected]>
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get -y install ssh-askpass sshpass lftp rsync wget unzip git
RUN echo " StrictHostKeyChecking no" >> /etc/ssh/ssh_config
RUN mkdir ~/.ssh && chmod 700 ~/.ssh
# Install Composer
COPY --from=composer:latest /usr/bin/composer /usr/bin/composer