Files
ollama-plus/rag-server/Dockerfile
T

12 lines
153 B
Docker
Raw Normal View History

2025-09-10 17:34:22 -04:00
# syntax=docker/dockerfile:1
FROM oven/bun:1.2.2-alpine
WORKDIR /app
COPY index.ts ./index.ts
ENV PORT=8788
EXPOSE 8788
CMD ["bun","run","index.ts"]