Spaces:
Running
on
T4
Running
on
T4
File size: 427 Bytes
15368cc 10452a4 15368cc d134c1d 15368cc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# 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
# Precompute series for SO(2) and SO(3) groups
RUN micromamba run -n ${ENV_NAME} python utils/precompute_series.py
# Run app under micromamba environment
CMD ["sh", "-c", "micromamba run -n ${ENV_NAME} python3 app/main.py"]
|