8 lines
148 B
Docker
8 lines
148 B
Docker
FROM squidfunk/mkdocs-material:9.4.5
|
|
|
|
COPY action.sh /action.sh
|
|
|
|
RUN apk add --no-cache bash \
|
|
&& chmod +x /action.sh
|
|
|
|
ENTRYPOINT ["/action.sh"]
|