FROM python:alpine3.7
COPY . /osm-doc
WORKDIR /osm-doc
RUN pip install -r requirements.txt
CMD [ "python", "./my_script.py" ]
