Spaces:
Runtime error
Runtime error
File size: 361 Bytes
68787b5 f64d1b3 ec60126 43db59c ec60126 43db59c ec60126 4cd1ad2 ec60126 68787b5 077dcab |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
# 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"]
|