FROM python:2

WORKDIR /migration

COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt

COPY . .

VOLUME ["/migration/FeatureMigration"]

ENTRYPOINT ["python", "./templatemigrations.py"]
CMD []
