FROM python:3.11.3 # 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 the working directory to the user's home directory WORKDIR $HOME/app # Set home to the user's home directory ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH # Get secret OPENAI_API_KEY and clone it as repo at buildtime / changed required to true RUN --mount=type=secret,id=OPENAI_API_KEY,mode=0444,required=true RUN --mount=type=secret,id=HF_TOKEN,mode=0444,required=true \ cat /run/secrtes/HF_TOKEN > cli_token RUN pip install -U "huggingface_hub[cli]" RUN huggingface-cli login $(cat cli_token) # Copy the current directory contents into the container at $HOME/app setting the owner to the user COPY --chown=user . $HOME/app RUN git clone https://huggingface.co/spaces/avfranco/ea4all-docker COPY ./requirements.txt . RUN pip install --no-cache-dir --upgrade -r requirements.txt CMD ["python", "./ea4all-docker-demo/main.py"]