Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -0
Dockerfile
CHANGED
@@ -25,10 +25,17 @@ RUN git clone https://github.com/ggerganov/llama.cpp.git
|
|
25 |
WORKDIR /app/llama.cpp
|
26 |
RUN make
|
27 |
|
|
|
|
|
|
|
28 |
# Model download process
|
29 |
RUN mkdir -p models/7B && \
|
30 |
wget -O models/7B/${MODEL_FILE} ${MODEL_URL}
|
31 |
|
|
|
|
|
|
|
|
|
32 |
# Changing ownership to a non-root user
|
33 |
RUN useradd -m -u 1000 user && chown -R user:user /app
|
34 |
USER user
|
|
|
25 |
WORKDIR /app/llama.cpp
|
26 |
RUN make
|
27 |
|
28 |
+
# List contents to verify the location of the server executable
|
29 |
+
RUN ls -la
|
30 |
+
|
31 |
# Model download process
|
32 |
RUN mkdir -p models/7B && \
|
33 |
wget -O models/7B/${MODEL_FILE} ${MODEL_URL}
|
34 |
|
35 |
+
# List contents to verify the location of the server executable
|
36 |
+
RUN ls -la models/7B/
|
37 |
+
RUN ls -la models/7B/${MODEL_FILE}
|
38 |
+
|
39 |
# Changing ownership to a non-root user
|
40 |
RUN useradd -m -u 1000 user && chown -R user:user /app
|
41 |
USER user
|