fix: add git to the server dockerfile

This commit is contained in:
zk
2026-06-20 13:26:22 +00:00
parent fdf6528949
commit b73d4343fc
+2 -1
View File
@@ -43,7 +43,8 @@ ENV MIGRATIONS_DIR=/app/db/migrations
ENV PORT=8080
# curl is only needed by the API healthcheck below; workers don't use it.
RUN apk add --no-cache curl
# git is needed by cron tasks that clone the seeds repo (BMS table sync, backsync, etc.).
RUN apk add --no-cache curl git
WORKDIR /app
COPY --from=deps /app .