FROM anchorxia/musev:latest | |
#MAINTAINER η»΄ζ€θ δΏ‘ζ― | |
LABEL MAINTAINER="anchorxia, zhanchao" | |
LABEL Email="[email protected], [email protected]" | |
LABEL Description="musev gradio image, from docker pull anchorxia/musev:latest" | |
SHELL ["/bin/bash", "--login", "-c"] | |
# 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 | |
RUN echo "docker start"\ | |
&& whoami \ | |
&& which python \ | |
&& pwd | |
# Clone repository and configure git locally | |
RUN git clone -b hg_space --recursive https://github.com/TMElyralab/MuseV.git \ | |
&& cd MuseV \ | |
&& mkdir -p .git \ | |
&& git config --local user.email "[email protected]" \ | |
&& git config --local user.name "jmanhype" \ | |
&& chmod -R 777 .git | |
# Set permissions | |
RUN chmod -R 777 /home/user/app/MuseV | |
RUN . /opt/conda/etc/profile.d/conda.sh \ | |
&& echo "source activate musev" >> ~/.bashrc \ | |
&& conda activate musev \ | |
&& conda env list | |
RUN echo "export PYTHONPATH=\${PYTHONPATH}:/home/user/app/MuseV:/home/user/app/MuseV/MMCM:/home/user/app/MuseV/diffusers/src:/home/user/app/MuseV/controlnet_aux/src" >> ~/.bashrc | |
WORKDIR /home/user/app/MuseV/scripts/gradio/ | |
# Add entrypoint script | |
COPY --chown=user entrypoint.sh ./entrypoint.sh | |
RUN chmod +x ./entrypoint.sh | |
EXPOSE 7860 | |
CMD ["./entrypoint.sh"] |