1
0
mirror of https://github.com/pocket-id/pocket-id.git synced 2026-02-04 16:49:42 +00:00

fix: correctly set script permissions inside Docker container

This commit is contained in:
Elias Schneider
2025-05-06 21:18:45 +02:00
parent 6f54ee5d66
commit c55fef057c
2 changed files with 12 additions and 4 deletions

View File

@@ -46,7 +46,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 find ./scripts -name "*.sh" -exec chmod +x {} \;
EXPOSE 80
ENV APP_ENV=production