|
@@ -54,15 +54,10 @@ COPY --from=builder /app/package.json ./package.json
|
|
|
# RUN mkdir -p /app/public/uploads && chown -R nextjs:nodejs /app/public && chown -R nextjs:nodejs /app/public/uploads
|
|
|
|
|
|
# 设置权限
|
|
|
-RUN mkdir -p /app/public/uploads && \
|
|
|
- chown -R nextjs:nodejs /app && \
|
|
|
- chmod -R 755 /app/public && \
|
|
|
- chmod 755 /app/public/uploads
|
|
|
-
|
|
|
-# 再次确认 uploads 目录的权限
|
|
|
-RUN chown nextjs:nodejs /app/public/uploads && \
|
|
|
- chmod 755 /app/public/uploads
|
|
|
-
|
|
|
+RUN mkdir -p /app/public/uploads
|
|
|
+RUN chown -R nextjs:nodejs /app/public
|
|
|
+RUN chown -R nextjs:nodejs /app/public/uploads
|
|
|
+RUN chmod -R 755 /app/public/uploads
|
|
|
|
|
|
# 设置为非 root 用户
|
|
|
USER nextjs
|