Spaces:
Runtime error
Runtime error
# 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"] | |