ragify / Dockerfile
lloydakresi's picture
ui done. working on containerization
5063d41
Raw
History Blame Contribute Delete
188 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
ENV ENV=production
CMD ["python", "-m", "app.ui"]