CoolFace
Apppublic

JackRio/bone-age-estimation

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile19 linesDownload Raw Back to root
1FROM docker.io/jackrio/bae_repo:v42 3USER root4 5RUN useradd -m -u 1000 dockeruser6USER dockeruser7# Set home to the user's home directory8ENV HOME=/home/dockeruser \9    PATH=/home/dockeruser/.local/bin:$PATH10 11# Set the working directory to the user's home directory12WORKDIR $HOME/app13 14# Copy the current directory contents into the container at $HOME/app setting the owner to the user15COPY --chown=dockeruser . $HOME/app16 17EXPOSE 808018CMD ["python", "predict.py"]19