Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
# Use the Node.js 18 base image
|
2 |
FROM node:18
|
3 |
|
4 |
-
# Clone the
|
5 |
-
RUN git clone
|
6 |
|
7 |
# Set the working directory inside the container
|
8 |
-
WORKDIR "
|
9 |
|
10 |
# Install dependencies using npm
|
11 |
RUN npm install
|
|
|
1 |
# Use the Node.js 18 base image
|
2 |
FROM node:18
|
3 |
|
4 |
+
# Clone the LLMs repository from GitHub
|
5 |
+
RUN git clone https://github.com/Niansuh/LLMs.git
|
6 |
|
7 |
# Set the working directory inside the container
|
8 |
+
WORKDIR "LLMs"
|
9 |
|
10 |
# Install dependencies using npm
|
11 |
RUN npm install
|