Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -38,6 +38,9 @@ COPY --chown=worker private_gpt/ private_gpt
|
|
38 |
COPY --chown=worker docs/ docs
|
39 |
COPY --chown=worker *.yaml *.md ./
|
40 |
|
|
|
|
|
|
|
41 |
USER worker
|
42 |
|
43 |
# Activate the virtual environment and run uvicorn
|
|
|
38 |
COPY --chown=worker docs/ docs
|
39 |
COPY --chown=worker *.yaml *.md ./
|
40 |
|
41 |
+
# Ensure the 'meta.json' file has the correct permissions
|
42 |
+
RUN touch local_data/private_gpt/qdrant/meta.json && chown worker local_data/private_gpt/qdrant/meta.json
|
43 |
+
|
44 |
USER worker
|
45 |
|
46 |
# Activate the virtual environment and run uvicorn
|