Update Dockerfile
Browse files- Dockerfile +4 -7
Dockerfile
CHANGED
|
@@ -1,10 +1,7 @@
|
|
| 1 |
FROM ubuntu:22.04
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
ENV PATH="/home/user/.local/bin:$PATH"
|
| 6 |
-
|
| 7 |
-
WORKDIR /app
|
| 8 |
|
| 9 |
# Install curl and other dependencies
|
| 10 |
RUN apt-get install -y curl
|
|
@@ -19,8 +16,8 @@ RUN apt-get install -y python3 python3-pip
|
|
| 19 |
# With pip.
|
| 20 |
RUN pip install uv
|
| 21 |
|
| 22 |
-
RUN npm i -g @dadigua/hyper-chat
|
| 23 |
|
| 24 |
ENV NODE_ENV=production
|
| 25 |
|
| 26 |
-
CMD ["npx", "hyper-chat", "--appDataDir=/data
|
|
|
|
| 1 |
FROM ubuntu:22.04
|
| 2 |
|
| 3 |
+
# Update package lists
|
| 4 |
+
RUN apt-get update
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
# Install curl and other dependencies
|
| 7 |
RUN apt-get install -y curl
|
|
|
|
| 16 |
# With pip.
|
| 17 |
RUN pip install uv
|
| 18 |
|
| 19 |
+
RUN npm i -g @dadigua/hyper-chat
|
| 20 |
|
| 21 |
ENV NODE_ENV=production
|
| 22 |
|
| 23 |
+
CMD ["npx", "hyper-chat", "--appDataDir=/data"]
|