add git to docker-image
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jochen Welzel 2021-01-18 17:22:01 +01:00
parent 2fe251c036
commit fe1717cf05

View File

@ -2,7 +2,7 @@ FROM alpine:latest
MAINTAINER Jochen Welzel
RUN apk update && apk upgrade && apk add bash && apk add openssh-client
RUN apk update && apk upgrade && apk add bash && apk add openssh-client && apk add git
COPY scp_and_reload.sh /usr/local/bin/
RUN chmod 755 /usr/local/bin/scp_and_reload.sh