fix: create data dir before build in Dockerfile
Some checks failed
Deploy / build-and-deploy (push) Failing after 1m9s

This commit is contained in:
2026-06-14 21:41:35 +03:00
parent 05677924b5
commit fe1c77ffbc

View File

@@ -4,7 +4,7 @@ WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
RUN mkdir -p /app/data && npm run build
FROM node:22-alpine AS runner