Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +2 -5
Dockerfile
CHANGED
|
@@ -5,7 +5,7 @@ FROM node:20.4
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Git clone clewd
|
| 8 |
-
RUN git clone https://github.com/
|
| 9 |
RUN sed -i'' 's|/v1/chat|/api/v1/chat|g' /app/clewd.js
|
| 10 |
|
| 11 |
# Install the dependencies
|
|
@@ -22,7 +22,4 @@ USER node
|
|
| 22 |
RUN ls -la
|
| 23 |
|
| 24 |
# Start the application
|
| 25 |
-
CMD ["node", "clewd.js"]
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
RUN env
|
|
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Git clone clewd
|
| 8 |
+
RUN git clone https://github.com/teralomaniac/clewd.git .
|
| 9 |
RUN sed -i'' 's|/v1/chat|/api/v1/chat|g' /app/clewd.js
|
| 10 |
|
| 11 |
# Install the dependencies
|
|
|
|
| 22 |
RUN ls -la
|
| 23 |
|
| 24 |
# Start the application
|
| 25 |
+
CMD ["node", "clewd.js"]
|
|
|
|
|
|
|
|
|