We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c87e38 commit 7258d8fCopy full SHA for 7258d8f
.gitignore
@@ -138,3 +138,4 @@ config/
138
*.sh
139
nohup.out
140
xiao_config.yaml
141
+.DS_Store
Dockerfile
@@ -1,15 +1,11 @@
1
-FROM python:3.12 AS builder
2
-WORKDIR /app
3
-COPY . .
4
-RUN pip install pdm && \
5
- pdm install
6
-
7
FROM python:3.12
8
9
WORKDIR /app
10
-COPY --from=builder /app/.venv /app/.venv
11
COPY . .
12
+RUN pip install pdm && \
+ pdm install --no-self
+
13
ENV XDG_CONFIG_HOME=/config
14
ENV XIAOGPT_PORT=9527
15
VOLUME /config
0 commit comments