Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -42,10 +42,10 @@ RUN curl -sSf https://raw.githubusercontent.com/WasmEdge/WasmEdge/master/utils/i
|
|
| 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 |
-
|
| 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
|
| 49 |
|
| 50 |
# Download a checkpoint
|
| 51 |
#RUN mkdir content
|
|
|
|
| 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
|
| 49 |
|
| 50 |
# Download a checkpoint
|
| 51 |
#RUN mkdir content
|