Skip to content
Snippets Groups Projects
Select Git revision
  • idacs_experiments
  • postgres_idacs
  • memgraph_fabian
  • postgres_julian
  • dev_ma
  • main default protected
  • test_results
  • FZ_changed_code
  • FZ_Memgraph
9 results

Dockerfile

Blame
  • Dockerfile 474 B
    # Use an official Python runtime as a base image
    FROM python:3.8
    
    # Set working directory in the container
    WORKDIR /app
    
    # install dependencies
    RUN pip install neo4j==1.7.0
    RUN pip install schedule
    
    ENV DOCKERIZE_VERSION v0.6.1
    
    # Copy the Python script into the container
    COPY cdm_cypher_queries.py /app/
    
    # Set environment variable 'chunk_size' and 'number_of_insertions'
    ENV db_port='7687'
    ENV db_host='localhost'
    ENV interval=15
    
    CMD [ "python","cdm_cypher_queries.py" ]