FROM python:3.11 WORKDIR /home/app RUN apt-get update \ && apt-get install -y --no-install-recommends nano unzip curl \ && rm -rf /var/lib/apt/lists/* COPY . . RUN curl -fsSL https://get.deta.dev/cli.sh | sh RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" RUN unzip awscliv2.zip RUN ./aws/install # THIS IS SPECIFIC TO HUGGINFACE # We create a new user named "user" with ID of 1000 RUN useradd -m -u 1000 user # We switch from "root" (default user when creating an image) to "user" USER user # We set two environmnet variables # so that we can give ownership to all files in there afterwards # we also add /home/user/.local/bin in the $PATH environment variable # PATH environment variable sets paths to look for installed binaries # We update it so that Linux knows where to look for binaries if we were to install them with "user". ENV HOME=/home/user \ PATH=/home/user/.local/bin:$PATH # We set working directory to $HOME/app (<=> /home/user/app) WORKDIR $HOME/app # Copy all local files to /home/user/app with "user" as owner of these files # Always use --chown=user when using HUGGINGFACE to avoid permission errors COPY --chown=user . $HOME/app COPY requirements.txt /dependencies/requirements.txt RUN pip install -r /dependencies/requirements.txt ENV AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID ENV AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY ENV BACKEND_STORE_URI=$BACKEND_STORE_URI ENV ARTIFACT_STORE_URI=$ARTIFACT_STORE_URI CMD mlflow server -p $PORT \ --host 0.0.0.0 \ --backend-store-uri $BACKEND_STORE_URI \ --default-artifact-root $ARTIFACT_STORE_URI \