taskflow-auth (latest)
Published 2026-08-03 20:32:31 +00:00 by portal
Installation
docker pull git.taktom.ru/portal/taskflow-auth:latestsha256:591ee1deba8bef83c74945802b6bcb9a014bf6c2871304902ad4ac4cc858af88Image layers
| ADD alpine-minirootfs-3.21.7-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| WORKDIR /app/auth |
| RUN /bin/sh -c addgroup -g 1001 -S rust-app && adduser -u 1001 -S rust-app -G rust-app # buildkit |
| COPY /app/auth/target/release/taskflow-core-auth ./taskflow-core-auth # buildkit |
| USER rust-app |
| EXPOSE [4010/tcp] |
| HEALTHCHECK {Test:[CMD-SHELL wget -qS -O /dev/null http://localhost:4010/auth/check 2>&1 | grep -q 'HTTP/'] Interval:10s Timeout:3s StartPeriod:0s StartInterval:0s Retries:10} |
| CMD ["./taskflow-core-auth"] |