Spaces:
Runtime error
Runtime error
File size: 994 Bytes
68cd8f8 942cfc8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
FROM python:3.8-slim
RUN apt-get update && \
apt-get install git bash wget iputils-ping -y && \
apt clean && \
rm -rf /var/cache/apt/*
WORKDIR /code
COPY requirements.txt /code/requirements.txt
# PYTHONDONTWRITEBYTECODE=1: Disables the creation of .pyc files (compiled bytecode)
# PYTHONUNBUFFERED=1: Disables buffering of the standard output stream
# PYTHONIOENCODING: specifies the encoding to be used for the standard input, output, and error streams
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PYTHONIOENCODING=utf-8
RUN pip install -U pip && \
python -m pip install -r /code/requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
# Download index
# RUN mkdir ./data/faiss-index/ && \
# gsutil cp "gs://thangtd1/faiss-index/index_beit3_L01_to_L20.faiss" ./data/faiss-index/
RUN bash $HOME/app/download_models.sh
CMD python ./src/main.py |