Files
Hexo-Async-Offends/Dockerfile-hexo-async-offends
offends 2526e27867
All checks were successful
continuous-integration/drone Build is passing
first commit
2025-12-15 18:34:24 +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