Spaces:
Runtime error
Runtime error
FROM python:3.10 | |
WORKDIR /app | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY . . | |
COPY all_embeddings.p all_embeddings_with_splits.p app.py pacmap2d.npy pacmap3d.npy pca.npy tsne2d.npy tsne3d.npy umap2d.npy umap3d.npy ./ | |
CMD ["python", "app.py", "--address", "0.0.0.0", "--port", "7680", "--allow-websocket-origin", "raulminan-pdbbind-gpcrdb-embedding-plots.hf.space"] | |