changed-files/Dockerfile

10 lines
180 B
Docker
Raw Normal View History

2021-03-04 21:36:52 -05:00
FROM alpine:3.13.2
LABEL maintainer="Tonye Jack <jtonye@ymail.com>"
RUN apk add bash
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]