mirror of
https://github.com/labring/FastGPT.git
synced 2026-04-25 02:01:53 +08:00
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 3000
|
|
|
|
CMD ["bun", "src/index.ts"]
|