DiffDock-Pocket-Web / Dockerfile
silterra's picture
Change working directory
43db59c
raw
history blame
361 Bytes
# Use the same container for the HF-space that we compiled for general use
FROM silterra/diffdock-pocket-dev
USER $APPUSER
COPY --chown=$APPUSER:appgroup . /home/$APPUSER/app
WORKDIR /home/$APPUSER/app
# Expose port for streamlit
EXPOSE 8501
# Run streamlit app under conda environment
CMD ["sh", "-c", "micromamba run -n ${ENV_NAME} streamlit run app.py"]