Cpt-Nemo/MolDocker_Refinement_Interface
0
1FROM yansh97/python-cuda:3.12-cuda12.6.2-ubuntu22.042 3ARG DEBIAN_FRONTEND=noninteractive4 5RUN apt-get update && apt-get install -y \6 curl \7 ca-certificates \8 sudo \9 git \10 bzip2 \11 libx11-6 \12 gcc \13 llvm \14 cmake \15 make \16 g++ \17 libsndfile1 \18 wget \19 && rm -rf /var/lib/apt/lists/*20 21WORKDIR /code22COPY ./requirements.txt /code/requirements.txt23RUN ln -sf /usr/bin/python3.12 /usr/bin/python3 && \24 python3 --version && \25 pip3 --version26RUN pip3 install --no-cache-dir -r /code/requirements.txt && \27 pip3 list28 29RUN useradd -m -u 1000 user30 31USER user32 33ENV HOME=/home/user34 35WORKDIR $HOME/app36 37COPY --chown=user . $HOME/app38EXPOSE 786039 40ENTRYPOINT ["python3", "app.py"]