We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94c8a83 commit b36c6daCopy full SHA for b36c6da
Dockerfile
@@ -167,6 +167,11 @@ RUN mkdir -p /home/appuser/.cache/ms-playwright \
167
168
RUN crawl4ai-doctor
169
170
+# Ensure all cache directories belong to appuser
171
+# This fixes permission issues with .cache/url_seeder and other runtime cache dirs
172
+RUN mkdir -p /home/appuser/.cache \
173
+ && chown -R appuser:appuser /home/appuser/.cache
174
+
175
# Copy application code
176
COPY deploy/docker/* ${APP_HOME}/
177
0 commit comments