DocumentVault / Dockerfile
mohsin-devs's picture
Deploy HF-ready DocVault with HF storage backend
2fe2727
raw
history blame contribute delete
256 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY ./server/requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
COPY . /app
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
EXPOSE 7860
CMD ["python", "-m", "server.app"]