JARVIS / Dockerfile
Khanna, Videh Rakesh Rakesh
feat: security hardening, transcription mode, 15 new features, Gradio UI
0191dfa
raw
history blame contribute delete
220 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements-server.txt .
RUN pip install --no-cache-dir -r requirements-server.txt
COPY . .
ENV PORT=7860
ENV GRADIO_SERVER_PORT=7860
EXPOSE 7860
CMD ["python", "server.py"]