Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -27,7 +27,7 @@ RUN mkdir build && \
|
|
| 27 |
|
| 28 |
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
|
| 29 |
RUN apt-get update --fix-missing && \
|
| 30 |
-
apt-get install -y --no-install-recommends curl
|
| 31 |
rm -rf /var/lib/apt/lists/*
|
| 32 |
|
| 33 |
WORKDIR /app
|
|
@@ -37,7 +37,7 @@ COPY --from=build /build/llama.cpp/build/bin/server /app
|
|
| 37 |
COPY --from=build /build/llama.cpp/examples/server/public /app/public
|
| 38 |
COPY ./run.sh /app/run.sh
|
| 39 |
WORKDIR /app
|
| 40 |
-
EXPOSE
|
| 41 |
|
| 42 |
# Make the script executable
|
| 43 |
RUN chmod +x run.sh
|
|
|
|
| 27 |
|
| 28 |
FROM ${BASE_CUDA_RUN_CONTAINER} as runtime
|
| 29 |
RUN apt-get update --fix-missing && \
|
| 30 |
+
apt-get install -y --no-install-recommends curl wget && \
|
| 31 |
rm -rf /var/lib/apt/lists/*
|
| 32 |
|
| 33 |
WORKDIR /app
|
|
|
|
| 37 |
COPY --from=build /build/llama.cpp/examples/server/public /app/public
|
| 38 |
COPY ./run.sh /app/run.sh
|
| 39 |
WORKDIR /app
|
| 40 |
+
EXPOSE 7860
|
| 41 |
|
| 42 |
# Make the script executable
|
| 43 |
RUN chmod +x run.sh
|