test-B / Dockerfile
avreymi's picture
讛讜住驻转 讟注讬谞转 讛Keys 讘dockerfile
8660c94
raw
history blame
419 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
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
RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true
RUN ./tests.sh
CMD ["streamlit", "run", "app.py"]