mirror of
https://github.com/varunsridharan/actions-toolkit.git
synced 2025-02-24 07:34:04 +08:00
20 lines
No EOL
614 B
Docker
20 lines
No EOL
614 B
Docker
FROM alpine:latest
|
|
|
|
#####################################
|
|
#### Install Required Dependency ####
|
|
#####################################
|
|
ADD https://raw.githubusercontent.com/varunsridharan/actions-toolkit/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"] |