fix docker
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
@@ -20,6 +20,12 @@ RUN pip install --upgrade pip \
|
|
20 |
|
21 |
COPY ./ /workspace
|
22 |
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
WORKDIR /workspace/vllm
|
24 |
|
25 |
RUN pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/test/cpu
|
|
|
20 |
|
21 |
COPY ./ /workspace
|
22 |
|
23 |
+
# Create a directory for usage statistics with appropriate permissions
|
24 |
+
RUN mkdir -p /workspace/.config && chmod -R 777 /workspace/.config
|
25 |
+
|
26 |
+
# Set the environment variable to use the new directory
|
27 |
+
ENV XDG_CONFIG_HOME=/workspace/.config
|
28 |
+
|
29 |
WORKDIR /workspace/vllm
|
30 |
|
31 |
RUN pip install -v -r requirements-cpu.txt --extra-index-url https://download.pytorch.org/whl/test/cpu
|