fasthtml-vespa / Dockerfile
thomasht86's picture
deploy at 2024-08-22 14:36:31.721965
45663ec verified
raw
history blame
294 Bytes
FROM python:3.10
WORKDIR /code
COPY --link --chown=1000 . .
RUN mkdir -p /tmp/cache/ session/ db/ assets/
RUN chmod a+rwx -R /tmp/cache/ session/ db/ assets/
ENV HF_HUB_CACHE=HF_HOME
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 PORT=7860
CMD ["python", "main.py"]