changed-files/Dockerfile

11 lines
202 B
Docker
Raw Normal View History

2021-05-21 08:39:56 -04:00
FROM alpine:3.13.5
LABEL maintainer="Tonye Jack <jtonye@ymail.com>"
RUN apk add bash git openssh grep sed
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]