Hexo-Async-Offends/Dockerfile-hexo-async-offends
2024-07-19 16:18:39 +08:00

10 lines
204 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