1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-05 12:03:49 +00:00

fix(docker): missing write permissions on scripts

This commit is contained in:
Elias Schneider
2025-03-13 14:18:48 +01:00
parent 90f8068053
commit ec4b41a1d2

View File

@@ -35,7 +35,7 @@ COPY --from=frontend-builder /app/frontend/package.json ./frontend/package.json
COPY --from=backend-builder /app/backend/pocket-id-backend ./backend/pocket-id-backend
COPY ./scripts ./scripts
RUN chmod +x ./scripts/*.sh
RUN chmod +x ./scripts/**/*.sh
EXPOSE 80
ENV APP_ENV=production