#79 add simple example to customize cellxgene-gateway ui

This commit is contained in:
Alok Saldanha
2022-12-21 15:42:13 -05:00
parent 390fe24ea4
commit facfb27d5c
3 changed files with 28 additions and 0 deletions
@@ -0,0 +1,12 @@
FROM python:3.9
RUN pip install cellxgene-gateway 'MarkupSafe<2.1'
COPY customize_ui.sh customize_ui.sh
RUN CELLXGENE_GATEWAY_DIR=/usr/local/lib/python3.9/site-packages/cellxgene_gateway . ./customize_ui.sh
ENV CELLXGENE_DATA=/cellxgene-data
ENV CELLXGENE_LOCATION=/usr/local/bin/cellxgene
EXPOSE 5005
CMD ["cellxgene-gateway"]