first commit
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
2025-12-15 18:34:24 +08:00
commit 2526e27867
38 changed files with 1771 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
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