Hexo-Async-Offends/Dockerfile-hexo-async-offends
2024-07-19 17:09:37 +08:00

10 lines
203 B
Plaintext

ARG IMAGENAME
FROM ${IMAGENAME}
COPY ./app/* /app/
RUN apk update && apk add --no-cache --virtual .build-deps curl bash git \
&& bash /app/init.sh \
&& rm -rf /app \
&& apk del .build-deps