DiffDock-Web / Dockerfile
silterra's picture
Switch base image to rbgcsail
10452a4
raw
history blame
No virus
311 Bytes
# This container is a basic web frontend, we do the heavy-lifting in the
# main DiffDock image.
FROM rbgcsail/diffdock
USER $APPUSER
WORKDIR $HOME/$DIR_NAME
# Expose port for web service
EXPOSE 7860
# Run app under micromamba environment
CMD ["sh", "-c", "micromamba run -n ${ENV_NAME} python3 app/main.py"]