first commit

This commit is contained in:
2025-09-19 15:19:32 +05:00
commit d160410cd9
305 changed files with 9509 additions and 0 deletions

22
docker/Dockerfile.web Normal file
View File

@@ -0,0 +1,22 @@
FROM jscorptech/django:v0.5
ARG SCRIPT="entrypoint.sh"
ENV SCRIPT=$SCRIPT
WORKDIR /code
COPY ./ /code
RUN apk add --no-cache curl || apk add --no-cache openbsd-netcat
RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
COPY ./resources/scripts/$SCRIPT /code/$SCRIPT
RUN chmod +x /code/resources/scripts/$SCRIPT
CMD sh /code/resources/scripts/$SCRIPT