Hash101/Noncoding_variant_scoring
0
1FROM harshatha/ncscore_v9:9.02 3USER root4 5RUN apt-get update && apt-get install -y \6 default-jdk \7 curl \8 git \9 jq \10 && rm -rf /var/lib/apt/lists/*11 12RUN curl -s https://get.nextflow.io | bash \13 && mv nextflow /usr/local/bin/ \14 && chmod +x /usr/local/bin/nextflow15 16RUN pip install gradio huggingface_hub pandas duckdb17 18WORKDIR /app19 20# Copy EVERYTHING including main.nf, modules/, envs/21COPY . .22 23EXPOSE 786024CMD ["python", "app.py"]