Update Dockerfile
Browse files- Dockerfile +1 -3
Dockerfile
CHANGED
@@ -17,8 +17,6 @@ RUN apt-get update && apt-get install -y curl
|
|
17 |
|
18 |
RUN mkdir /app && chmod -R 777 /app && cd /app
|
19 |
|
20 |
-
|
21 |
-
|
22 |
# Set up a new user named "user" with user ID 1000
|
23 |
RUN useradd -m -u 1000 user
|
24 |
|
@@ -44,7 +42,7 @@ RUN curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/i
|
|
44 |
RUN curl -LO https://github.com/LlamaEdge/LlamaEdge/releases/latest/download/llama-api-server.wasm
|
45 |
RUN curl -LO https://github.com/second-state/chatbot-ui/releases/latest/download/chatbot-ui.tar.gz; tar xzf chatbot-ui.tar.gz; rm chatbot-ui.tar.gz
|
46 |
COPY run.sh .
|
47 |
-
RUN chmod +x
|
48 |
|
49 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
50 |
COPY --chown=user . $HOME/app
|
|
|
17 |
|
18 |
RUN mkdir /app && chmod -R 777 /app && cd /app
|
19 |
|
|
|
|
|
20 |
# Set up a new user named "user" with user ID 1000
|
21 |
RUN useradd -m -u 1000 user
|
22 |
|
|
|
42 |
RUN curl -LO https://github.com/LlamaEdge/LlamaEdge/releases/latest/download/llama-api-server.wasm
|
43 |
RUN curl -LO https://github.com/second-state/chatbot-ui/releases/latest/download/chatbot-ui.tar.gz; tar xzf chatbot-ui.tar.gz; rm chatbot-ui.tar.gz
|
44 |
COPY run.sh .
|
45 |
+
#RUN chmod +x run.sh
|
46 |
|
47 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
48 |
COPY --chown=user . $HOME/app
|