fix: give nginx permissions over D2 generated assets

This commit is contained in:
JasterV 2026-04-26 18:12:19 +02:00
parent 845aea809c
commit ba8b430f6d

View file

@ -36,4 +36,7 @@ COPY nginx.conf /etc/nginx/nginx.conf
# Copy the static files from the build stage
COPY --from=build /app/dist /usr/share/nginx/html
# Give read permissions to Nginx over D2 generated assets
RUN chmod -R 755 /usr/share/nginx/html/assets/d2
EXPOSE 8080