Spaces:
Sleeping
Sleeping
File size: 321 Bytes
d0a4f07 ea49401 d0a4f07 ea49401 d0a4f07 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.11-slim
WORKDIR /app
COPY ./requirements.txt /app/requirements.txt
RUN pip install -r /app/requirements.txt
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user
ENV PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
EXPOSE 21111
CMD ["python", "-m", "apis.search_api"] |