c-reviewer / Dockerfile
ml-visoft's picture
bug with sesskey
3f17489
raw
history blame
397 Bytes
FROM python:3.11
RUN useradd -m -u 1000 user
WORKDIR /code
#COPY --link --chown=1000 . .
COPY --chown=1000 requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir -p /tmp/cache/
RUN chmod a+rwx -R /tmp/cache/
ENV HF_HUB_CACHE=HF_HOME
#RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 PORT=7860
COPY --link --chown=1000 . .
CMD ["python", "main.py"]