actions-toolkit/test/alpine/Dockerfile

20 lines
613 B
Text
Raw Normal View History

2020-10-21 12:33:38 +08:00
FROM alpine:latest
#####################################
#### Install Required Dependency ####
#####################################
ADD https://raw.githubusercontent.com/varunsridharan/actions-alpine/main/setup-alpine.sh /
########################################
#### Configure Required Dependency #####
########################################
RUN chmod uga+x /setup-alpine.sh
RUN sh /setup-alpine.sh
#####################################
#### Setup Entry Point & RUN IT #####
#####################################
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]