Block a user
claudequeue (sha256:4c7c50bf900230a4cdbdc5ea25a382004b88b766165cc5cb1e0958d594b673a2)
Published 2026-06-12 21:48:55 +00:00 by josh
Installation
docker pull git2.hesed.sbs/josh/claudequeue@sha256:4c7c50bf900230a4cdbdc5ea25a382004b88b766165cc5cb1e0958d594b673a2sha256:4c7c50bf900230a4cdbdc5ea25a382004b88b766165cc5cb1e0958d594b673a2Image Layers
| ADD alpine-minirootfs-3.20.10-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN /bin/sh -c apk add --no-cache php83 php83-pdo php83-pdo_mysql php83-pecl-redis php83-pecl-swoole php83-json php83-mbstring php83-openssl php83-pcntl php83-posix php83-tokenizer php83-ctype php83-fileinfo php83-curl composer nodejs npm git openssh-client curl bash # buildkit |
| RUN /bin/sh -c ln -sf /usr/bin/php83 /usr/bin/php # buildkit |
| WORKDIR /var/www/html |
| COPY composer.json ./ # buildkit |
| RUN /bin/sh -c composer install --no-dev --optimize-autoloader # buildkit |
| COPY package.json vite.config.js ./ # buildkit |
| RUN /bin/sh -c npm install # buildkit |
| COPY . . # buildkit |
| RUN /bin/sh -c npm run build # buildkit |
| RUN /bin/sh -c mkdir -p /var/www/ssh-keys && chmod 700 /var/www/ssh-keys # buildkit |
| RUN /bin/sh -c mkdir -p /var/www/html/public/uploads/tasks && chmod 755 /var/www/html/public/uploads # buildkit |
| EXPOSE [8080/tcp] |
| CMD ["php" "server.php"] |