muryshev commited on
Commit
8a4ac98
·
verified ·
1 Parent(s): a40b18d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 bc && \
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 7867
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