starter-docker-github-actions/Dockerfile

9 lines
134 B
Docker
Raw Normal View History

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