DiffDock-Pocket-Web / Dockerfile
silterra's picture
Use CMD instead of entrypoint
077dcab
raw
history blame
305 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 . /app
WORKDIR /app
EXPOSE 8501
# Run streamlit app under conda environment
CMD ["sh", "-c", "micromamba run -n ${ENV_NAME} streamlit run app.py"]