zotero-search-ab-test / Dockerfile
rbiswasfc's picture
fix docker
dc112a1
raw
history blame contribute delete
319 Bytes
FROM python:3.10
WORKDIR /code
COPY --link --chown=1000 . .
RUN mkdir -p /tmp/cache/
RUN mkdir -p /.cache
RUN chmod a+rwx -R /tmp/cache/
RUN chmod a+rwx -R /.cache
ENV HF_HUB_CACHE=HF_HOME
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
ENV PYTHONUNBUFFERED=1 PORT=7860
CMD ["python", "app.py"]