epii-1 commited on
Commit
245d736
·
1 Parent(s): 88f616f
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -73,8 +73,8 @@ USER root
73
  RUN apk add --no-cache nodejs npm
74
 
75
 
76
- RUN mkdir -p /app/logs /app/config && \
77
- chmod -R 777 /app/logs /app/config
78
  # 复制入口脚本并设置执行权限
79
  COPY docker-entrypoint.sh /app/docker-entrypoint.sh
80
  RUN chmod +x /app/docker-entrypoint.sh
 
73
  RUN apk add --no-cache nodejs npm
74
 
75
 
76
+ RUN mkdir -p /app/logs /app/config /app/data && \
77
+ chmod -R 777 /app/logs /app/config /app/data
78
  # 复制入口脚本并设置执行权限
79
  COPY docker-entrypoint.sh /app/docker-entrypoint.sh
80
  RUN chmod +x /app/docker-entrypoint.sh