|
@@ -43,9 +43,8 @@ RUN apk add --no-cache bash
|
|
|
# 创建非 root 用户
|
|
|
RUN addgroup --system --gid 1001 nodejs
|
|
|
RUN adduser --system --uid 1001 nextjs
|
|
|
-
|
|
|
# 创建 uploads 目录并设置权限
|
|
|
-RUN mkdir -p /app/public/uploads && chown -R nextjs:nodejs /app/public
|
|
|
+RUN mkdir -p /app/public/uploads && chown -R nextjs:nodejs /app/public && chmod 755 /app/public/uploads
|
|
|
|
|
|
# 复制必要文件
|
|
|
COPY --from=builder /app/public ./public
|
|
@@ -62,5 +61,4 @@ EXPOSE 3000
|
|
|
ENV PORT 3000
|
|
|
|
|
|
# 使用 bash 启动应用
|
|
|
-# CMD ["/bin/bash", "-c", "node_modules/.bin/next start"]
|
|
|
-CMD ["/bin/bash", "-c", "chown -R nextjs:nodejs /app/public/uploads && su nextjs -c 'node_modules/.bin/next start'"]
|
|
|
+CMD ["/bin/bash", "-c", "node_modules/.bin/next start"]
|