# Use the kundajelab/chrombpnet Docker image as base.
FROM kundajelab/chrombpnet:latest

# Add GCP dependencies.
RUN pip install fsspec
RUN pip install gcsfs
RUN pip install --upgrade protobuf==3.19.0

# Add google cloud storage script.

COPY variant-scorer /scratch/variant-scorer

# Make the script executable.
# RUN chmod +x /scratch/variant-scorer/src/variant_scoring.per_chrom.py

