backend-identity (a4f9d98)
Published 2026-05-01 05:53:18 +00:00 by wesley
Installation
docker pull git.edge.capetown/school/backend-identity:a4f9d98sha256:584595617ee625d651093196b86bc52fe27355f824c545296f254d4230061d84Image 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 app && adduser -S -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 |