Files
ollama-plus/rag-server/Dockerfile
T
2025-09-10 17:34:22 -04:00

12 lines
153 B
Docker

# 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"]