starter-docker-github-actions/Dockerfile

9 lines
133 B
Docker
Raw Permalink Normal View History

FROM docker:latest
RUN apk add bash
2021-03-26 20:55:58 +07:00
COPY ./entrypoint.sh /entrypoint.sh
2021-03-26 20:59:45 +07:00
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]