# 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" ]