BuckLakeAI / Dockerfile
parkerjj's picture
add HF_Token to Docker
878fde1
raw
history blame
1.11 kB
# 使用官方的 Python 镜像作为基础镜像
FROM python:3.12-slim
# 设置工作目录
WORKDIR /app
# 复制当前目录的内容到容器中的 /app 目录
COPY . /app
# 安装所需的 Python 包
RUN pip install -r requirements.txt
# 公开 Gradio 默认的端口 7860
EXPOSE 7860
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
# Switch to the "user" user
USER user
# Set home to the user's home directory
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
# Set the working directory to the user's home directory
WORKDIR $HOME/app
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
COPY --chown=user . $HOME/app
# Get secret EXAMPLE and output it to /test at buildtime
RUN --mount=type=secret,id=HF_Token,mode=0444,required=true \
cat /run/secrets/HF_Token > /HF_Token
# Get secret SECRET_EXAMPLE and clone it as repo at buildtime
RUN --mount=type=secret,id=HF_Token,mode=0444,required=true \
git clone $(cat /run/secrets/HF_Token)
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]