SkinZen / Dockerfile
jatin-tec
trying
2bf11bd
raw
history blame
612 Bytes
FROM python:3.10.6
WORKDIR /code
ADD requirements.txt /code/requirements.txt
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y software-properties-common
RUN apt-get install -y build-essential cmake pkg-config \
&& apt-get install -y libx11-dev libatlas-base-dev \
&& apt-get install -y libgtk-3-dev libboost-python-dev
RUN pip install --no-cache-dir -r 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
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]