FROM python:%%VERSION%%alpine ADD requirements.txt /app/ RUN cd /app ; pip install -r requirements.txt ADD . /app WORKDIR /app CMD [“python”]