backend-identity (5bb7248)
Published 2026-05-10 14:14:40 +00:00 by wesley
Installation
docker pull git.edge.capetown/school/backend-identity:5bb7248sha256:e2925f8b83b53131fdbb91c4e3282830f6dc2c77ba8fdcea03c3221e19866e3eImage layers
| ADD alpine-minirootfs-3.19.9-x86_64.tar.gz / # buildkit |
| CMD ["/bin/sh"] |
| RUN apk add --no-cache ca-certificates tzdata && addgroup -S -g 1000 app && adduser -S -u 1000 -G app app |
| COPY --from=build /go/bin/goose /usr/local/bin/goose |
| COPY --from=build /out/app /app |
| COPY services/${SERVICE}/ /tmp/svc/ |
| RUN mkdir -p /migrations && if [ -d /tmp/svc/migrations ]; then cp -a /tmp/svc/migrations/. /migrations/ 2>/dev/null || true; fi && rm -rf /tmp/svc |