summaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 1451bdc416ded106c270bbb7a0a4452003dde8ba (plain)
1
2
3
4
5
6
7
8
9
FROM google/python-runtime

RUN apt-get update && \
    apt-get -y install openssh-client

RUN mkdir $HOME/.ssh && chmod 600 $HOME/.ssh
COPY deploy_rsa /root/.ssh/id_rsa

ENTRYPOINT ["/env/bin/python", "-u", "GitAutoDeploy.py", "--ssh-keyscan"]