mirror of
https://github.com/labring/FastGPT.git
synced 2026-04-26 02:07:28 +08:00
cc3a91d009
* Opensandbox (#6651) * volumn manager * feat: opensandbox volumn * perf: action (#6654) * perf: action * doc * doc * deploy tml * update template
16 lines
209 B
Docker
16 lines
209 B
Docker
# Build:
|
|
# docker build -t fastgpt-volume-manager:latest .
|
|
|
|
FROM oven/bun:1.3-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json ./
|
|
RUN bun install --frozen-lockfile
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 3001
|
|
|
|
CMD ["bun", "src/index.ts"]
|